IUserDimAttributes.Order

Syntax

Order: IUserDimAttribute;

Description

The Order property determines dictionary attribute, which function is Order.

Example

Sub UserProc;
Var
    MB: IMetabase;
    UsDim: IUserDimension;
    UsDimAts: IUserDimAttributes;
    UsDimAttr: IUserDimAttribute;
    i: Integer;
Begin
    MB:=MetabaseClass.Active;
    UsDim:=MB.ItemById("USER_DIM").Bind As IUserDimension;
    UsDimAts:=UsDim.Attributes;
    UsDimAttr:=UsDimAts.Order;
    i:=UsDimAttr.Key;
End Sub UserProc;

After executing the example the "i" variable contains key attribute of the calculated dictionary that determines Order. Dictionary identifier - USER_DIM.

See also:

IUserDimAttributes