ChartOfAccountsExtDimensionTypes.<Chart of Accounts name>.FindRows

Syntax:

FindRows(<FilterParameters>)

Parameters:

<FilterParameters> (required)

Type: Structure.
Contains search criteria: the structure key defines the column to be searched, and the structure value defines the sought value.

Returned value:

Type: Array.
Array of tabular section rows ChartOfAccountsExtDimensionTypesRow. meeting search criteria.
Note. The array stores references to the tabular section rows, so when modifying a tabular section row, the value in the array will also be changed.

Description:

The tabular section rows are searched for according to the given search criteria.

Availability:

Server, thick client, external connection.

Note:

This method is effective for selecting non-unique values.

Example:

ParametersFilter = New Structure;
ParametersFilter.Insert("SearchObject", CurObject);
FoundLines = Content.FindRows(ParametersFilter);


    

1C:Enterprise Developer's Community