System.Contnrs.TOrderedList.Destroy

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

destructor Destroy; override;

C++

__fastcall virtual ~TOrderedList();

Properties

Type Visibility Source Unit Parent
destructor public
System.Contnrs.pas
System.Contnrs.hpp
System.Contnrs TOrderedList

Description

Destroys the TOrderedList instance.

Do not call Destroy directly. Instead, call Free. Free verifies that the TOrderedList reference is not nil, and only then calls Destroy.

Destroy frees the memory used to store the TOrderedList instance. It does not free the memory pointed to by the items in the list.

See Also