ExchangePlanSelection.<Name of the exchange plan>.Next

Syntax:

Next()

Returned value:

Type: Boolean.
True indicates next item is selected; False indicates the end of selection has been reached.

Description:

Obtains the next element from the selection. To cycle through the exchange plan, call this method for positioning on the first element after getting the selection, and then keep calling it until False is returned.

Availability:

Server, thick client, external connection, Mobile application (server).

Example:

Selection = ExchangePlans.Main.Select();
While 
Selection.Next() Do
    Message("Node is written - " + Selection.Description);
EndDo
;


    

1C:Enterprise Developer's Community