OnClick picture event
Related pages:
ENTRY OnClick(IN INT _refId) ; script actions END OnClick
ENTRY XXX_OnClick ; script actions END XXX_OnClick
_refId |
Parameter of INT type (required for global handler). |
XXX | Name of Reference variable connected to graphic object (without the character "_"). |
; picture event handler: Clicking the graphic object ; with reference variable_BtnOK assigned
ENTRY BtnOK_OnClick %HI_ClosePicture() ; closing picture END BtnOK_OnClick
; picture events handler: Clicking on graphic objects ; that has no special handler defined
ENTRY OnClick(IN INT _refId)
; _refId - value of reference local variable assigned to graphic object IF _refId = _BtnOK THEN ; test, that determines the graphic object ; the user clicked on %HI_ClosePicture() ; closing picture ENDIF END OnClick
Related pages:
Pridať komentár