[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Collection of pascal strings.
Source position: objects.pp line 497
type TStringCollection = object(TSortedCollection) |
||
function GetItem(); virtual; |
|
Get string from the stream. |
function Compare(); virtual; |
|
Compare two strings in the collection. |
procedure FreeItem(); virtual; |
|
Dispose a string in the collection from memory. |
procedure PutItem(); virtual; |
|
Write a string to the stream. |
end; |
|
Collection of pascal strings. |
|
| | ||
|
Abstract sorted collection. |
|
| | ||
|
Manage a collection of pointers of objects. |
|
| | ||
|
Basis of all objects. |
|
| | ||
|
Base class of all classes. |
The TStringCollection object manages a sorted collection of pascal strings. To this end, it overrides the Compare method of TSortedCollection, and it introduces methods to read/write strings from a stream.