IStandardDimension.Indexes

Syntax

Indexes: IStandardDimIndexes;

Description

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

Example

Sub UserProc;
Var
    MB: IMetabase;
    Dimens: IStandardDimension;
    DimInds: IStandardDimIndexes;
    i: Integer;
Begin
    MB:=MetabaseClass.Active;
    Dimens:=MB.ItemById("TAB_DIM").Bind As IStandardDimension;
    DimInds:=Dimens.Indexes;
    i:=DimInds.Count;
End Sub UserProc;

After executing the example the "i" variable contains the number of dictionary indexes. Table dictionary identifier: TAB_DIM.

See also:

IStandardDimension