API:Vcl.Tabs.TTabList.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(const ATabSet: TTabSet);

C++

__fastcall TTabList(TTabSet* const ATabSet);

Properties

Type Visibility Source Unit Parent
constructor public
Vcl.Tabs.pas
Vcl.Tabs.hpp
Vcl.Tabs TTabList

Description

Creates an instance of a TStringList object.

Vcl.Tabs.TTabList.Create inherits from System.Classes.TStringList.Create. All content below this line refers to System.Classes.TStringList.Create.

Creates an instance of a TStringList object.

The Create constructor creates a new instance of the TStringList object.

Create has five overloaded methods:

  1. Takes no parameters.
  2. Accepts the OwnsObjects boolean parameter to specify whether the string list owns the objects or not.
  3. Accepts the QuoteChar and Delimiter parameters to create a new string list with the specified QuoteChar and Delimiter properties.
  4. Accepts the QuoteChar, Delimiter and Options parameters to create a new string list with the specified QuoteChar, Delimiter and Options properties.
  5. Accepts the Duplicates, Sorted and CaseSensitive to create a new string list with the specified Duplicates, Sorted, CaseSensitive properties.

See Also