TStringList
[Properties (by Name)][Methods (by Name)][Events (by Name)]
Collection of strings
Declaration
Source position: objects.pp line 565
Type
TStringList = object (TObject)
constructor Load(var S: TStream);
destructor Done; Virtual;
function Get(Key: Sw_Word) : string;
private
Stream : PStream;
BasePos : LongInt;
IndexSize : LongInt;
Index : PStrIndex;
procedure ReadStr(var S: string; Offset: LongInt; Skip: LongInt);
end
;
Description
A TStringList object can be used to read a collection of strings stored in a stream. If you register this object with the RegisterType function, you cannot register the TStrListMaker object.
Members
Member | Type | Visibility | Description |
---|---|---|---|
BasePos | Field | private | |
Done | Method | default | Clean up the instance |
Get | Method | default | Return a string by key name |
Index | Field | private | |
IndexSize | Field | private | |
Load | Method | default | Load stringlist from stream. |
ReadStr | Method | private | |
Stream | Field | private |
Inheritance
Class | Description |
---|---|
TStringList | Collection of strings |