BusinessProcessRoutePoints

Collection elements:

BusinessProcessRoutePointRef
Iteration through collection using For each ... In ... Do operator is available to object. Business-process route points are retrieved during iteration.
Access to business-process route point is possible using [...] operator. Index (starting from 0) of business-process route point in the collection is passed as an argument.

Properties:

<Business process route point name>

Methods:

Count
Get
IndexOf

Description:

Represents collection of business process route points.

Availability:

Server, thick client, external connection.

Example:

Count = BusinessProcesses.ExtractOfAccount.RoutePoints.Count();

For 
each Point In BusinessProcesses.ExtractOfAccount.RoutePoints Do
    Message("Route point: " + Point.Name);
    Index = BusinessProcesses.ExtractOfAccount.RoutePoints.IndexOf(Point);
    Message("Point index: " + Index);
EndDo
;

See also:

BusinessProcessManager, property RoutePoints
BusinessProcessRoutePointRef

    

1C:Enterprise Developer's Community