%HI_SetColumnMasterVisible( INT in refId, INT in index, BOOL in bVisible ) BOOL %HI_GetColumnMasterVisible( INT in refId, INT in index ) |
| refId | Reference to graphic object (reference variable). |
| index | Column number. |
| bEnable | Visibility of column. |
ENTRY OnLogOn(IN TEXT _userName, IN BOOL _bLogOn)
IF _bLogOn THEN
;when a user is logged on, the column is visible
%HI_SetColumnMasterVisible(_Text,@TRUE)
ELSE
;when a user is logged off, the column is hide
%HI_SetColumnMasterVisible(_Text,@FALSE)
ENDIF
END OnLogOn
|