Sub OnDeactivate(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnDeactivate;
The Sender parameter returns the component that has generated the event.
The Args parameter allows to determine event parameters.
The OnDeactivate event occurs when the form or one of its child components loses focus.
This event does not occur, if:
focus is passed between child components placed on the form.
the for is connected to the components Frameor ControlBar.
the current form is a MDI child form.
See also: