ChartOfAccountsExtDimensionTypes.<Chart of Accounts name>.Find
Syntax:
Parameters:
<Value> (required)
Sought value.
<Columns> (optional)
List of comma-separated names of the columns to be searched.
If the parameter is omitted, search will be performed across the entire tabular section.
Default value: Empty string.
Returned value:
If no value is found, Undefined is returned.
Description:
Availability:
Note:
Example:
FoundString = Content.Find(Object, ColumnName); If FoundString = Undefined Then DoMessageBox("Object not found!"); Else Count = FoundString.Count; EndIf; |