ChartOfCharacteristicTypesSelection.<Chart of characteristic types name>.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 a chart of characteristic types, call this method for positioning on the first element after obtaining the selection and continue calling it until the False value is returned.

Availability:

Server, thick client, external connection.

Example:

Selection = ChartsOfCharacteristicTypes.ObjectProperties.Select();
While 
Selection.Next() Do
    // process selection records
EndDo;


    

1C:Enterprise Developer's Community