IRubricatorInstance.GetDictionary

Syntax

GetDictionary(Dictionary: RubricatorDictionary): IMetaDictionaryInstance;

Parameters

Dictionary. The dictionary that contains data of the time series database.

Description

The GetDictionary method returns data of the dictionary that contains information of the time series database.

Example

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

Sub Main;

Var

MB: IMetabase;

RubDesc: IMetabaseObjectDescriptor;

RubrIn: IRubricatorInstance;

MDI: IMetaDictionaryInstance;

Begin

MB := MetabaseClass.Active;

RubDesc := MB.ItemById("OBJ_RUBRICATOR");

RubrIn := RubDesc.Open(Null) As IRubricatorInstance;

MDI := RubrIn.GetDictionary(RubricatorDictionary.ValidationExecs);

End Sub Main;

After executing the example the object containing data of validation calculation dictionary is stored in the MDI variable.

See also:

IRubricatorInstance