%HI_SetMasterVisible( INT in refId, BOOL in bVisible ) BOOL %HI_GetMasterVisible( INT in refId ) |
| refId | Reference to graphic object (reference variable). |
| bEnable | @TRUE - shows the graphic object, which is
controlled by %HI_SetVisible @FALSE - hides the graphic object |
ENTRY OnLogOn(IN TEXT _userName, IN BOOL _bLogOn)
IF _bLogOn THEN
;when a user is logged on, the object is visible
%HI_SetMasterVisible(_Text,@TRUE)
ELSE
;when a user is logged off, the object is hide
%HI_SetMasterVisible(_Text,@FALSE)
ENDIF
END OnLogOn
|