IStandardDimension.Attributes

Syntax

Attributes: IStandardDimAttributes;

Description

The Attributes property returns an object that contains a collection of table dictionary attributes.

Example

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

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

See also:

IStandardDimension