Sub OnClose(Sender: Object; Args: IEventArgs);
Begin
//set of operators;
End Sub OnClose;
The Sender parameter returns the component that has generated the event.
The Args parameter allows to determine event parameters.
The OnClose event occurs directly before form closing after execution of the OnCloseQuery event. It is usually used to change the standard conduct of the form on closing.
See also: