[Overview][Constants][Classes][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Implement TTextReader for a single string
Source position: streamex.pp line 125
type TStringReader = class(TTextReader) end; |
||
public |
||
constructor Create(); |
|
Create a new instance of TStreamReader from a string |
destructor Destroy; override; |
|
Free the TStringReader instance. |
procedure Reset; override; |
|
Reset the stream to its original position |
procedure Close; override; |
|
Close and possibly free the stream |
function IsEof; override; |
|
Check if the end of the string is reached. |
procedure ReadLine(); |
|
Read a line of text |
|
Implement TTextReader for a single string |
|
| | ||
|
Text reader class. |
|
| | ||
TStreamReader is a TTextReader descendent that takes a single string as the source of text data.
|
Text reader class. |