Vcl.AxCtrls.TActiveForm.DoDestroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure DoDestroy; override;

C++

virtual void __fastcall DoDestroy();

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.AxCtrls.pas
Vcl.AxCtrls.hpp
Vcl.AxCtrls TActiveForm

Description

Form destruction event dispatcher.

Vcl.AxCtrls.TActiveForm.DoDestroy inherits from Vcl.Forms.TCustomForm.DoDestroy. All content below this line refers to Vcl.Forms.TCustomForm.DoDestroy.

Form destruction event dispatcher.

DoDestroy is called automatically when the TCustomForm object is about to be deallocated. The precise way DoDestroy is called can be modified by setting the OldCreateOrder property.

As implemented in TCustomForm, DoDestroy simply calls the OnDestroy event handler.

See Also