IStandardDimension.DeduplicateExpression

Syntax

DeduplicateExpression: IExpression;

Description

The DeduplicateExpression property returns an object containing expression used to remove duplicates from the dictionary.

Example

Sub UserProc;
Var
    MB: IMetabase;
    Dimens: IStandardDimension;
    Expr: IExpression;
    s: String;
Begin
    MB:=MetabaseClass.Active;
    Dimens := MB.ItemById("TAB_DIM").Bind As IStandardDimension;
    Expr := Dimens.DeduplicateExpression;
    s := Expr.AsString;
End Sub UserProc;

After executing the example the "s" variable contains the expression used to remove duplicates in the dictionary transformed into symbols. Table dictionary identifier: TAB_DIM.

See also:

IStandardDimension