"dpElementTypeFilter"

Filters the view in the data point tree for specific data point element types.

Synopsis

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

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

this.dpElementTypeFilter(string filter);

Parameter

Parameter Description
shape Name of the object
filter The constant for the used type filter.

Description

Filters the view in the data point tree for specific data point element types. For a list of available filter types see dpElementType().

Example

The following example shows how to restrict the elements to float elements.

main()
{
  DP_TREE1.dpElementTypeFilter(DPEL_DYN_FLOAT);
}

Assignment

DpTreeView