FMX.Types.TTimer.Destroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

destructor Destroy; override;

C++

__fastcall virtual ~TTimer();

Properties

Type Visibility Source Unit Parent
destructor public
FMX.Types.pas
FMX.Types.hpp
FMX.Types TTimer

Description

Disposes of a timer object.

Do not call Destroy directly in an application. Instead, an application should call Free. Free verifies that the timer is not nil before it calls Destroy.

Destroy deactivates the timer by setting Enabled to False before freeing the resources required by the timer.

See Also