Form.OnClose

Syntax

Sub OnClose(Sender: Object; Args: IEventArgs);

Begin

//set of operators;

End Sub OnClose;

Parameters

The Sender parameter returns the component that has generated the event.

The Args parameter allows to determine event parameters.

Description

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:

Form