System.Classes.TStringList.Create
Delphi
constructor Create; overload;
constructor Create(OwnsObjects: Boolean); overload;
constructor Create(QuoteChar, Delimiter: Char); overload;
constructor Create(QuoteChar, Delimiter: Char; Options: TStringsOptions); overload;
constructor Create(Duplicates: TDuplicates; Sorted: Boolean; CaseSensitive: Boolean); overload;
C++
__fastcall TStringList()/* overload */;
__fastcall TStringList(bool OwnsObjects)/* overload */;
__fastcall TStringList(System::WideChar QuoteChar, System::WideChar Delimiter)/* overload */;
__fastcall TStringList(System::WideChar QuoteChar, System::WideChar Delimiter, TStringsOptions Options)/* overload */;
__fastcall TStringList(System::Types::TDuplicates Duplicates, bool Sorted, bool CaseSensitive)/* overload */;
プロパティ
種類 | 可視性 | ソース | ユニット | 親 |
---|---|---|---|---|
constructor | public | System.Classes.pas System.Classes.hpp |
System.Classes | TStringList |
説明
TStringList オブジェクトのインスタンスを作成(Create)します。
Create コンストラクタは、TStringList オブジェクトのインスタンスを作成します。
Create には、オーバーロード メソッドが 2 つあります。 1 つはパラメータなし、もう 1 つは OwnsObjects
Boolean パラメータ(文字列リストがオブジェクトを所有しているかどうかを示す)を取ります。