"dpFilter"
    
    Filters the view in the data point tree for specific data points.
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 data point tree for specific data points. Use the "*" wildcard to generalize the filter.
Example
In the following example the view in the data point tree is reduced to all data points whose names contain "*ample*".
main()
{
  DP_TREE1.dpFilter("*ample*");
}
        
            Assignment
DpTreeView
