IMetaHierarchyInstance.Scheme

Syntax

Scheme: Object;

Description

The Scheme property returns data of time series database that uses the hierarchy of system dictionary elements.

Example

Executing the example requires the HInst object (the IMetaHierarchyInstance interface).

Add links to the Cubes, Metabase, Rds system assemblies.

Sub UserProc;
Var
    HInst: IMetaDictionaryInstance;
    RubInstance: IRubricatorInstance;
    Rub: IMetabaseObject;
Begin
    RubInstance := HInst.Scheme As IRubricatorInstance;
    Rub := RubInstance.Rubricator As IMetabaseObject;
    Debug.WriteLine(Rub.Name);
End Sub UserProc;

After executing the example the name of time series database that uses data of elements hierarchy DictInst is displayed in the console window.

See also:

IMetaHierarchyInstance