IEaxAnalyzer.InvisibleDimensions

Syntax

InvisibleDimensions: IEaxInvisibleDimensions;

Description

The InvisibleDimensions property returns a collection of invisible dimensions.

Example

Sub Main;

Var

MB: IMetabase;

Expr: IEaxAnalyzer;

InvisDim: IEaxInvisibleDimensions;

Begin

MB:=MetabaseClass.Active;

Expr:=MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;

InvisDim:=Expr.InvisibleDimensions;

End Sub Main;

 

After executing the example, the InvisDim variable will contain invisible dimensions of the express report. Express report identifier - EXPRESS_REPORT.

See also:

IEaxAnalyzer