ChartOfCalculationTypesSelection.<Chart of calculation types name>.Next

Syntax:

Next()

Returned value:

Type: Boolean.
True - next calculation type selected; False - end of selection reached.

Description:

Obtains the next calculation type from the selection. After getting the selection, to cycle through the table of calculation types, you will need to call this method to go to the first item, and then keep calling it until a value of False is returned.

Availability:

Server, thick client, external connection.

Example:

Selection = ChartsOfCalculationTypes.OrganizationsDeduction.Select();
While 
Selection.Next() Do
    // process selection
    // ...
EndDo;


    

1C:Enterprise Developer's Community