IUserDimension.Indexes

Syntax

Indexes: IUserDimIndexes;

Description

The Indexes property returns an object that contains a collection of dictionary indexes.

Example

Sub Main;

Var

MB: IMetabase;

UsDim: IUserDimension;

UsDimIndex: IUserDimIndexes;

i: Integer;

Begin

MB:=MetabaseClass.Active;

UsDim:=MB.ItemById("USER_DIM").Bind As IUserDimension;

UsDimIndex:=UsDim.Indexes;

i:=UsDimIndex.Count;

End Sub Main;

After executing the example the "i" variable contains the number of indexes of the calculated dictionary. Dictionary identifier: USER_DIM.

See also:

IUserDimension