ValueTreeRowCollection.FindRows
Syntax:
Parameters:
<FilterParameters> (required)
Contains search criteria: the structure key defines the column to be searched, and the structure value defines the sought value.
<IncludeSubordinates> (optional)
Defines whether the subordinate collections (if there are any) will also be searched. True - search will take place.
Default value: False.
Returned value:
An array of value tree rows corresponding to the given search criteria.
Note. The array stores references to value tree rows, so when modifying rows in the tree, values in the array will also be changed.
Description:
Availability:
Note:
Example:
ParametersFilter = New Structure; ParametersFilter.Insert("Costs", CurExpense); FoundLines = ContentRows.FindRows(ParametersFilter); |