Indexes: IDimIndexes;
The Indexes property returns an object that contains a collection of dictionary indexes.
Sub Main;
Var
MB: IMetabase;
DimModel: IDimensionModel;
DimIndex: IDimIndexes;
i: Integer;
Begin
MB:=MetabaseClass.Active;
DimModel:=MB.ItemById("D_TO").Bind As IDimensionModel;
DimIndex:=DimModel.Indexes;
i:=DimIndex.Count;
End Sub Main;
After executing the example the "i" variable contains the number of dictionary indexes. Repository object identifier: D_TO.
See also: