System.Classes.TBits.Destroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

destructor Destroy; override;

C++

__fastcall virtual ~TBits();

Properties

Type Visibility Source Unit Parent
destructor public
System.Classes.pas
System.Classes.hpp
System.Classes TBits

Description

Destroys an instance of TBits.

Do not call Destroy directly in an application. Instead, call Free. Free verifies that the TBits object is not nil and only then calls Destroy.

Destroy frees the memory used to store the array of boolean values.

See Also