System.Classes.TStringItemList
Delphi
TStringItemList = array of TStringItem;
C++
typedef System::DynamicArray<TStringItem> TStringItemList;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
array typedef |
public | System.Classes.pas System.Classes.hpp |
System.Classes | System.Classes |
Description
TStringItemList defines an array of TStringItems.
TStringItemList is used internally by TStringList to refer to its internal array of TStringItem values. This array holds the list of strings.
TStringItem comprises :
FString defines string for a list entry.
FObject points to an optional TObject associated with the string.