"dpTypeFilter"
Filters the view in the data point tree for specific data point types.
Synopsis
setValue(string shape, "dpTypeFilter", string filter);
getValue(string shape, "dpTypeFilter", string &filter);
shape.dpTypeFilter(string filter);
Parameter
Parameter | Description |
---|---|
shape | Name of the object |
filter | The width of the margin |
Description
Filters the view in the data point tree for specific data point types. Use the "*" wildcard to generalize the filter.
Example
In the following example the view in the data point tree is reduced to all data point types whose names contain "*ample*".
main()
{
DP_TREE1.dpTypeFilter("*ample*");
}

Assignment
DpTreeView