 "SetDpFilter"
"SetDpFilter"
    
    Sets a data point filter for the DpTreeView.
Synopsis
setValue(string shape, "SetDpFilter", string filter);
getValue(string shape, "SetDpFilter", string &filter);
shape.SetDpFilter(string filter);
Parameter
| Parameter | Description | 
|---|---|
| shape | Name of the object | 
| filter | Data point name or data point pattern | 
Description
Sets a data point filter for the DpTreeView. Use the wildcard "*" to generalize the filter.
 Example
Example
In the following example only data points whose names contain "*ample*" are displayed.
main()
{
  DP_TREE1.SetDpFilter("*ample*");
}
                 
            
Assignment
DpTreeView
