%HI_SetEditEnable( INT in refId, INT in row, INT in col, BOOL in bEnable ) BOOL %HI_GetEditEnable( INT in refId, INT in row, INT in col )
refId | Reference to graphic object
(reference variable). |
row | Item row. |
col | Item column. |
bEnable | @TRUE - enable editing the item. @FALSE - disable editing the item. |
; change editing the item placed in 2nd row and 3rd column
BOOL _bEnable
_bEnable := %HI_GetEditEnable(_browser, 3, 2)
_bEnable := !_bEnable
%HI_SetEditEnable(_browser, 3, 2, _bEnable)
0 komentárov