FilterCriterionManager.<Criterion Name>.Find

Syntax:

Find(<SearchValue>)

Parameters:

<SearchValue> (required)

Value that will be used for searching. alue type should correspond to the filter criterion type.

Returned value:

Type: Array.
Object references array, which uses a specified filter value.

Description:

Searches the database for objects that are part of the filter and that use a specified filter value.

Availability:

Server, thick client, external connection.

Note:

Contents of metadata objects in the filter are specified during configuration.

Example:

RefsArray = FilterCriteria.Contractors.Find(SelContractor);
For 
Each Ref In RefsArray Do
    Message(Ref);
EndDo
;


    

1C:Enterprise Developer's Community