"dpFilter"

Filters the view in the datapoint tree for specific datapoints.

Synopsis

setValue(string shape,"dpFilter", string filter);

getValue(string shape,"dpFilter",string &filter);

this.dpFilter(int filter);

Parameter

Parameter Description
shape Name of the object
filter The width of the margin

Description

Filters the view in the datapoint tree for specific datapoints. Use the "*" wildcard to generalize the filter.

Example

In the following example the view in the datapoint tree is reduced to all data points whose names contain "*ample*".

main()
{
  DP_TREE1.dpFilter("*ample*");
}
Figure 1. Datapoint tree with "*ample*" in the datapoint names

Assignment

DpTreeView