OnTextChange picture event
Related pages:
ENTRY OnTextChange(IN INT _refId) ; script actions END OnTextChange
ENTRY XXX_OnTextChange ; script actions END XXX_OnTextChange
_refId | Parameter of INT type (required for global handler). |
XXX | Name of Reference variable connected to graphic object (without the character "_"). |
; picture event handler: Change of the text in the text entry field with ; reference variable _EField assigned
ENTRY EField_OnTextChange
; script actions END EField_OnTextChange
; picture events handler: Change of a text in text entry fields,
; which has no special handler defined
ENTRY OnTextChange(IN INT _refId)
; _refId - value of reference local variable assigned graphic object IF _refId = _EField THEN ; test that determines the text entry field ; in which the user changed the text ; script actions
ENDIF END OnTextChange
Related pages:
Pridať komentár