OnSpin picture event
Related pages:
ENTRY OnSpin(IN INT _refId) ; script actions END OnSpin
ENTRY XXX_OnSpin ; script actions END XXX_OnSpin
_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 spin button ; with reference _Spin assigned
ENTRY Spin_OnSpin
; script actions END Spin_OnSpin
; picture events handler: Clicking a spin button
; with no special handler defined
ENTRY OnSpin(IN INT _refId)
; _refId - value of reference local variable assigned to graphic object IF _refId = _Spin THEN ; test that determines the spin button ; the user clicked on ; script actions
ENDIF END OnSpin
Related pages:
Pridať komentár