FMX.Forms3D.TForm3D.OnDestroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDestroy: TNotifyEvent read FOnDestroy write FOnDestroy;

C++

__property OnDestroy;

Properties

Type Visibility Source Unit Parent
event published
FMX.Forms3D.pas
FMX.Forms3D.hpp
FMX.Forms3D TForm3D

Description

Occurs when the form is destroyed.

FMX.Forms3D.TForm3D.OnDestroy inherits from FMX.Forms.TCommonCustomForm.OnDestroy. All content below this line refers to FMX.Forms.TCommonCustomForm.OnDestroy.

Occurs when the form is destroyed.

Use OnDestroy to perform special processing when the form is destroyed. Either implement this event or override the destructor of the class, but not both. This event should destroy any objects created in the OnCreate event.

See Also