%HI_SetColumnMasterEditable( INT in refId, INT in col, BOOL in bEnable ) BOOL %HI_GetColumnMasterEditable( INT in refId, INT in col ) |
| refId | Reference to graphic object (reference variable). |
| col | Column in Browser. |
| bEnable | @TRUE - enables the graphic object @FALSE - disables the graphic object |
ENTRY OnLogOn(IN TEXT _userName, IN BOOL _bLogOn)
IF _bLogOn THEN
;when a user is logged on, a text in column can be edited
%HI_SetColumnMasterEditable(_Text,@TRUE)
ELSE
;when a user is logged off, the access to a text in column is disabled
%HI_SetColumnMasterEditable(_Text,@FALSE)
ENDIF
END OnLogOn
|