IStandardDimension.ReverseOrder

Syntax

ReverseOrder: Boolean;

Description

The ReverseOrder property determines state of the Reverse Order of Dictionary Elements option. By default False.

Example

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Dimens: IStandardDimension;
Begin
    MB:=MetabaseClass.Active;
    MObj:=MB.ItemById("TAB_DIM").Edit;
    Dimens:=MObj As IStandardDimension;
    Dimens.ReverseOrder:=True;
    MObj.Save;
End Sub UserProc;

After executing the example the Reverse Order of Dictionary Elements option of the calculated dictionary with the TAB_DIM identifier is enabled.

See also:

IStandardDimension