HideInaccessibleElements: Boolean;
The HideInaccessibleElements property determines state of the Hide Inaccessible Dictionary Elements option. By default - True.
Sub Main;
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 Main;
After executing the example the Hide Inaccessible Dictionary Elements option in the calculated dictionary with the TAB_DIM identifier is disabled.
See also: