CatalogsManager

Collection elements:

CatalogManager
Iteration through collection using For each ... In ... Do operator is available to object. Catalog managers are retrieved during iteration.
Access to catalog manager is possible using [...] operator. Catalog name as specified in the configuration is passed as an argument.

Properties:

<Catalog name>

Methods:

AllRefsType

Description:

You can use it to manage catalogs and to access values of the following type CatalogManager.. You can access the object using global context property Catalogs.

Availability:

Server, thick client, external connection, Mobile application (server).
Exchange with server is possible.

Example:

For each Catalog In Metadata.Catalogs Do
    CatalogName = Catalog.Name;
    CatalogManager = Catalogs[CatalogName];
    CatakogSelection = CatalogManager.Select();
    If 
CatakogSelection.Next() Then
        DoMessageBox("There are " +
                       "filled catalogs in the infobas!");
        Return
;
    EndIf
;
EndDo
;

See also:

Global context, property Catalogs

    

1C:Enterprise Developer's Community