Sub OnDeactivate(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnDeactivate;
Sender - parameter that returns the component that has generated the event.
Args - parameter that enables the user 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.
Form is connected to the components Frameor ControlBar.
Current form is a MDI child form.
See also: