CatalogSelection.<Catalog name>.Next
Syntax:
Returned value:
True indicates next item is selected; False indicates the end of selection has been reached.
Description:
Availability:
Example:
CatalogSelection = Catalogs.Currencies.Select(); While CatalogSelection.Next() Do Message("Currency recorded - " + CatalogSelection.Description); EndDo; |