IRdsDictionaryElementData.RecordO

Syntax

RecordO(Options: Variant): ;

Parameters

Options. Determines variant of returned data.

Description

The RecordO property returns element attribute data according to parameter set as an object implemented by the  IOrmRecord interface.

Comments

The Options parameter determines variant of returned data. Available values:

Example

Executing the example requires that the repository contains an MDM table dictionary with the DIM identifier.

Add links to the Metabase, Orm and Rds system assemblies.

Sub UserProc;
Var
    DictInst: IRdsDictionaryInstance;
    Elem: IRdsDictionaryElement;
Begin
    DictInst := MetabaseClass.Active.ItemById("DIM").Open(NullAs IRdsDictionaryInstance;
    DictInst.FetchAll:=True;
    Elem := DictInst.Elements.Item(1);
    Debug.WriteLine("Displayed attribute value: " + Elem.RecordO(0).AttributeValue(4));
    Debug.WriteLine("Attribute value in dictionary table: " 
        + Elem.RecordO(1).AttributeValue(4));
End Sub UserProc;

After executing the example the second record of the dictionary will be obtained. The console window displays information about displayed value of the specified attribute and the attribute value in dictionary table.

See also:

IRdsDictionaryElementData