TaskSelection.<Task name>.Next

Syntax:

Next()

Returned value:

Type: Boolean.
True - the next task is selected; False - the end of selection is reached.

Description:

Obtains the following task from the selection. To tab through the tasks call this method for positioning at the first task after returning the selection, and keep on calling it until the value returned is False.

Availability:

Server, thick client, external connection.

Example:

Selection = Tasks.Focal.Select();
While 
Selection.Next() Do
    // process selection
EndDo;


    

1C:Enterprise Developer's Community