IUserDimension.ReverseOrder

Syntax

ReverseOrder: Boolean;

Description

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

Example

Sub Main;

Var

MB: IMetabase;

MObj: IMetabaseObject;

UsDim: IUserDimension;

Begin

MB:=MetabaseClass.Active;

MObj:=MB.ItemById("USER_DIM").Edit;

UsDim:=MObj As IUserDimension;

UsDim.ReverseOrder:=True;

MObj.Save;

End Sub Main;

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

See also:

IUserDimension