Cubes > Cubes Assembly Interfaces > IRubricatorInstance > IRubricatorInstance.GetDictionary
GetDictionary(Dictionary: RubricatorDictionary): IMetaDictionaryInstance;
Dictionary. The dictionary that contains data of the time series database.
The GetDictionary method returns data of the dictionary that contains information of the time series database.
Executing the example requires a time series database with the OBJ_RUBRICATOR identifier.
Sub UserProc;
Var
MB: IMetabase;
RubrInst: IRubricatorInstance;
MDI: IMetaDictionaryInstance;
Begin
MB := MetabaseClass.Active;
RubrInst := MB.ItemById("OBJ_RUBRICATOR").Open(Null) As IRubricatorInstance;
MDI := RubrInst.GetDictionary(RubricatorDictionary.ValidationExecs);
End Sub UserProc;
After executing the example the MDI variable stores the object containing data of validation calculation dictionary.
See also: