IUserDimension.HideInaccessibleElements

Syntax

HideInaccessibleElements: Boolean;

Description

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

Example

Sub Main;

Var

MB: IMetabase;

MObj: IMetabaseObject;

UsDim: IUserDimension;

Begin

MB:=MetabaseClass.Active;

MObj:=MB.ItemById("USER_DIM").Edit;

UsDim:=MObj As IUserDimension;

UsDim.HideInaccessibleElements:=False;

MObj.Save;

End Sub Main;

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

See also:

IUserDimension