CatalogSelection.<Catalog 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 tab the catalog you should call this method for positioning at the first element after getting the selection, and then keep calling it until False value is returned.

Availability:

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

Example:

CatalogSelection = Catalogs.Currencies.Select();
While 
CatalogSelection.Next() Do
    Message("Currency recorded - " + CatalogSelection.Description);
EndDo
;


    

1C:Enterprise Developer's Community