System.Contnrs.TObjectList.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create; overload;
constructor Create(AOwnsObjects: Boolean); overload;

C++

__fastcall TObjectList()/* overload */;
__fastcall TObjectList(bool AOwnsObjects)/* overload */;

Properties

Type Visibility Source Unit Parent
constructor public
System.Contnrs.pas
System.Contnrs.hpp
System.Contnrs TObjectList

Description

Creates and initializes a TObjectList.

Create creates a TObjectList instance. If no parameter is specified, or if the constructor is called with AOwnsObjects set to true, the new TObjectList is initialized with OwnsObjects set to true.

See Also