OnAutoCompleteListSelected picture event
Related pages:
ENTRY OnAutoCompleteListSelected(IN INT _refId, IN TEXT _Line, IN INT _InsertPos, IN TEXT _choice) ; script actions END OnAutoCompleteListSelected
ENTRY XXX_OnAutoCompleteListSelected(IN TEXT _Line, IN INT _InsertPos, IN TEXT _choice) ; script actions END XXX_OnAutoCompleteListSelected
_refId | Parameter of INT type (required for global handler). |
_Line | String that represents the content of current row on the cursor position. |
_InsertPos | Position of the first letter of the first word. |
_choice | Current position of cursor (position of the last letter in front of cursor + 1). |
XXX | Name of Reference variable connected to graphic object (without the character "_"). |
; picture event handler: Change of text in entry field ; with assigned reference variable _EField
ENTRY EField_OnAutoCompleteListSelected(IN TEXT _Line, IN INT _InsertPos, IN TEXT _choice)
; actions
END
; picture event handler: Change of text in the entry fields ; without a special handler of the picture event
ENTRY OnAutoCompleteListSelected(IN INT _refId, IN TEXT _Line, IN INT _InsertPos, IN TEXT _choice)
; _refId - value of Reference local variable assigned to the graphic object IF _refId = _EField THEN ; test that determines the entry field in which the text was changed
; actions
ENDIF END
Related pages:
Pridať komentár