OnItemSelect picture event
Related pages:
ENTRY OnItemSelect(IN INT _refId) ; script actions END OnItemSelect
ENTRY XXX_OnItemSelect ; script actions END XXX_OnItemSelect
_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 selected line in the list ; with reference variable_List assigned
ENTRY List_OnItemSelect
; script actions END List_OnItemSelect
; picture events handler: Change of selected line in all lists and
; displayers of Browser type that have no special handler defined
ENTRY OnItemSelect(IN INT _refId)
; _refId - value of Reference local variable assigned to graphic object IF _refId = _List THEN ; test that determines where selected line was changed ; script actions
ENDIF END OnItemSelect
Related pages:
Pridať komentár