SequenceManager.<Sequence name>.GetBounds
Syntax:
Parameters:
<ViewPoint> (required)
Names of sequence dimensions separated by commas, for which you need to get boundaries.
<Filter> (optional)
A set of combinations of dimension values that should be used to get boundaries. It is defined as a table of values that contains corresponding dimension values in its columns. The column names should be the same as the names of the sequence dimensions. If dimension values are not specified (no parameter), the sequence boundary is obtained for all dimension values.
Returned value:
A table of values that contains the boundary point in time in the first column and the dimension values of viewpoint that have been used for boundary selection in other columns.
Description:
Availability:
Note:
Example:
Filter = New ValueTable; Filter.Columns.Add("Article"); ViewPoint = "Article"; Sequence = Sequences.ArticlesRegistration; Boundaries = Sequence.GetBounds(ViewPoint, Filter); |