IRubricator.Container

Syntax

Container(Type: RubricatorContainerType): IMetabaseObjectDescriptor;

Parameters

Type. Type of repository object.

Description

The Container property determines repository objects that form a time series database.

Example

Executing the example requires that the repository contains a time series database with the OBJ_RUBRICATOR identifier.

Sub UserProc;
Var
    MB: IMetabase;
    Rubr: IRubricator;
    CrInfo: IMetabaseObjectCreateInfo;
    Parent, Descr: IMetabaseObjectDescriptor;
Begin
    MB := MetabaseClass.Active;
    Rubr := MB.ItemById("OBJ_RUBRICATOR").Edit As IRubricator;
    CrInfo := MB.CreateCreateInfo;
    CrInfo.ClassID := MetabaseObjectClass.KE_CLASS_FOLDER;
    CrInfo.Id := "NEW_FAVORITES";
    CrInfo.Name := "NEW_FAVORITES";
    Parent := MB.ItemById("OBJ_RUBRICATOR");
    CrInfo.Parent := Parent;
    CrInfo.Permanent := True;
    Descr := MB.CreateObject(CrInfo);
    Rubr.Container(RubricatorContainerType.UserFavorites) := Descr;
    (Rubr As IMetabaseObject).Save;
End Sub UserProc;

After executing the example a folder with the NEW_FAVORITES identifier is created. Then it is determined as a favorites folder for the user.

See also:

IRubricator