[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Stream that stores its data in a string.
Source position: classesh.inc line 1007
type TStringStream = class(TStream) end; |
||
public |
||
constructor Create(); |
|
Creates a new stringstream and sets its initial content. |
function Read(); override; |
|
Reads from the stream. |
function ReadString(); |
|
Reads a string of length Count |
function Seek(); override; |
|
Sets the position in the stream. |
function Write(); override; |
|
Write overrides the TStream.Write method. |
procedure WriteString(); |
|
WriteString writes a string to the stream. |
property DataString: string; [r] |
|
Contains the contents of the stream in string form |
|
Stream that stores its data in a string. |
|
| | ||
|
Base class for streams. |
|
| | ||
|
Base class of all classes. |
TStringStream stores its data in an ansistring. The contents of this string is available as the DataString property. It also introduces some methods to read or write parts of the stringstream's data as a string.
The main purpose of a TStringSTream is to be able to treat a string as a stream from which can be read.
|
Base class for streams. |
|
|
Contains the contents of the stream in string form |
|
|
Reads a string of length Count |
|
|
WriteString writes a string to the stream. |