System.Variants.TCustomVariantType.Destroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

destructor Destroy; override;

C++

__fastcall virtual ~TCustomVariantType();

Properties

Type Visibility Source Unit Parent
destructor public
System.Variants.pas
System.Variants.hpp
System.Variants TCustomVariantType

Description

Frees an instance of TCustomVariantType.

To free a TCustomVariantType instance, use the Free method instead. Free checks that the instance is not already nil before calling Destroy.

Free the single instance of a TCustomVariantType descendant from the finalization section of the unit that implements the class.

See Also