Sub OnItemSelect(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnItemSelect;
The Sender parameter returns the component that has generated the event.
The Args parameter allows to determine event parameters.
The OnItemSelect event occurs when the element is selected from the list. This event occurs earlier than the OnChange event.
See also: