OnMouseEnter picture event
Related pages:
ENTRY OnMouseEnter(IN INT _refId) ; script actions END OnMouseEnter
ENTRY XXX_OnMouseEnter ; script actions END XXX_OnMouseEnter
_refId | Required input parameter of INT type for global handler. |
XXX | Name of the reference variable assigned to graphic object (without the character "_"). |
; picture event handler: Pointing the mouse cursor to the graphic object with ; the reference variable _List assigned
ENTRY List_OnMouseEnter
; actions END List_OnMouseEnter
; picture events handler: Pointing the mouse cursor to
; graphic object with reference variable assigned
ENTRY OnMouseEnter(IN INT _refId)
; _refId - value of reference variable assigned to graphic object IF _refId = _List THEN ; test that determines the graphic object
; the mouse cursor pointed to ; script actions
ENDIF END OnMouseEnter
Related pages:
Pridať komentár