IStandardDimension.HideInaccessibleElements

Syntax

HideInaccessibleElements: Boolean;

Description

The HideInaccessibleElements property determines state of the Hide Inaccessible Dictionary Elements option. By default - True.

Example

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Dimens: IStandardDimension;
Begin
    MB:=MetabaseClass.Active;
    MObj:=MB.ItemById("TAB_DIM").Edit;
    Dimens:=MObj As IStandardDimension;
    Dimens.HideInaccessibleElements:=False;
    MObj.Save;
End Sub UserProc;

After executing the example the Hide Inaccessible Dictionary Elements option in the calculated dictionary with the TAB_DIM identifier is disabled.

See also:

IStandardDimension