Indexes: IStandardDimIndexes;
The Indexes property returns an object that contains a collection of dictionary indexes.
Sub Main;
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 Main;
After executing the example the "i" variable contains the number of dictionary indexes. Table dictionary identifier: TAB_DIM.
See also: