"SetDpFilter"

Sets a datapoint 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 Datapoint name or datapoint pattern

Description

Sets a datapoint filter for the DpTreeView. Use the wildcard "*" to generalize the filter.

Example

In the following example only datapoints whose names contain "*ample*" are displayed.

main()
{
  DP_TREE1.SetDpFilter("*ample*");
}

Assignment

DpTreeView