Class TStringVector
Unit
PasDoc_StringVector
Declaration
type TStringVector = class(TStringList)
Description
Hierarchy
- TStringList
- TStringVector
Overview
Methods
Description
Methods
|
function FirstName: string; |
This is the same thing as Items[0]
|
|
procedure LoadFromTextFileAdd(const AFilename: string); overload; |
|
|
procedure LoadFromTextFileAdd(var ATextFile: TextFile); overload; |
|
|
procedure RemoveAllNamesCI(const AName: string); |
|
|
function ExistsNameCI(const AName: string): boolean; |
|
|
function IsEmpty: boolean; |
|
|
function AddNotExisting(const AString: string): Integer; |
|
|
procedure LoadFromBinaryStream(Stream: TStream); |
Load from a stream using the binary format.
The binary format is
Note that you should never use our Text value to load/save this object from/into a stream, like Text := TSerializable.LoadStringFromStream(Stream) . Using and assigning to the Text value breaks when some strings have newlines inside that should be preserved.
|
|
procedure SaveToBinaryStream(Stream: TStream); |
Save to a stream, in a format readable by LoadFromBinaryStream.
|
Generated by PasDoc 0.15.0.
|