SequenceManager.<Sequence name>.BelongsTo
Syntax:
Parameters:
<Document> (required)
Checked document.
<Filter> (optional)
A structure that defines filtering by sequence dimensions. The key of the structure defines the sequence dimension that will be used for filtering, and the structure value defines the dimension value. If the dimension is not available in the structure, it will not be used for filtering.
Returned value:
True - document belongs to the sequence; False - otherwise.
Description:
Availability:
Example:
Filter = New Structure; Filter.Insert("Article", CurArticle); BelongsTo = Sequences.ArticlesRegistration.BelongsTo(Doc, Filter); |