|
Close
|
Closes and flushes the buffer. (Inherited from GStreams.TGBufferStream.)
|
|
FillBuffer
|
Represents method FillBuffer. (Overrides GStreams.TGBufferStream.FillBuffer.)
|
|
FlushBuffer
|
Represents method FlushBuffer. (Inherited from GStreams.TGBufferStream.)
|
|
Format(String,TVarRec[])
|
Formats the argument parameters using the format string passed in the Fmt parameter. The formatting is identical to using the Format pascal procedure and calling the WriteArgs method.
To write the arguments out as one formatted line, use the FormatLn method.
|
|
FormatLn(String,TVarRec[])
|
Formats the argument parameters using the format string passed in the Fmt parameter and writes it out as a line of text (places the end of line characters after the string). The formatting is identical to using the Format pascal procedure and calling the WriteLn method.
To write the arguments out as just a string, use the Format method.
|
|
FreeStream
|
Represents method FreeStream.
|
|
GetChar
|
Overloaded. Returns the next character in the stream.
|
|
GetChar(Char)
|
Overloaded.
|
|
GetFloat
|
Returns the next token in the stream as a floating point number. The method advances from the current position in the stream until the next non-whitespace character is found (including carriage returns and line feeds).
|
|
GetInteger
|
Returns the next token in the stream as an integer number. The method advances from the current position in the stream until the next non-whitespace character is found (including carriage returns and line feeds).
|
|
GetLine
|
Returns a string containing all the characters in the stream from the current position until a carriage return or linefeed character is found.
|
|
GetToken
|
Overloaded. Returns a string containing all the characters in the stream until a character is found that is in the Delimiters property.
|
|
GetToken(String,Boolean)
|
Overloaded. Returns a string containing all the characters in the stream until a character is found that is in the Delimiters parameter. The RestoreOld parameter controls whether the object restores the old delimiters (in the Delimiters property) after the token is found
|
|
IsEof
|
Returns true if the stream is at the end of file. (Inherited from GStreams.TGBufferStream.)
|
|
PreambleSize
|
Represents method PreambleSize.
|
|
PrepareBuffer
|
Represents method PrepareBuffer. (Overrides GStreams.TGBufferStream.PrepareBuffer.)
|
|
Put(AnsiChar)
|
Overloaded. Places the character parameter into the text stream and returns the text stream.
The text stream is returned to allow you to chain together Put method calls (for example, Put('a').Put(123).PutEOL).
|
|
Put(Extended)
|
Overloaded. Places the floating point parameter into the text stream and returns the text stream.
The text stream is returned to allow you to chain together Put method calls (for example, Put('a').Put(123).PutEOL).
|
|
Put(Integer)
|
Overloaded. Places the integer parameter into the text stream and returns the text stream.
The text stream is returned to allow you to chain together Put method calls (for example, Put('a').Put(123).PutEOL).
|
|
Put(String)
|
Overloaded. Places the string parameter into the text stream and returns the text stream.
The text stream is returned to allow you to chain together Put method calls (for example, Put('a').Put(123).PutEOL).
|
|
Put(WideChar)
|
Overloaded. Places the wide character parameter into the text stream and returns the text stream.
The text stream is returned to allow you to chain together Put method calls (for example, Put('a').Put(123).PutEOL).
|
|
PutBack(Byte)
|
Overloaded. Represents method PutBack(Byte). (Inherited from GStreams.TGBufferStream.)
|
|
PutBack(Char)
|
Overloaded. Represents method PutBack(Char). (Overrides GStreams.TGBufferStream.PutBack(Char).)
|
|
PutEOL
|
Places an end of line character (#13#10) into the text stream and returns the text stream.
The text stream is returned to allow you to chain together Put method calls (for example, Put('a').Put(123).PutEOL).
|
|
PutLine(String)
|
Places the string parameter into the text stream, end of line characters (#13#10), and then returns the text stream.
The text stream is returned to allow you to chain together Put method calls (for example, Put('a').Put(123).PutEOL).
|
|
PutSpace
|
Places a space into the text stream and returns the text stream.
The text stream is returned to allow you to chain together Put method calls (for example, Put('a').Put(123).PutEOL).
|
|
PutTab
|
Places a tab character into the text stream and returns the text stream.
The text stream is returned to allow you to chain together Put method calls (for example, Put('a').Put(123).PutEOL).
|
|
Read(Void,Longint)
|
Represents method Read(Void,Longint). (Inherited from GStreams.TGBufferStream.)
|
|
Seek(Longint,Word)
|
Represents method Seek(Longint,Word). (Overrides GStreams.TGBufferStream.Seek(Longint,Word).)
|
|
SeekExcludePreamble(Longint,Word)
|
Represents method SeekExcludePreamble(Longint,Word).
|
|
SkipInLineSpaces
|
Skips the whitespace in the current line, it does not consider the end of line characters to be whitespace. The function returns TRUE if the end of line was encountered, FALSE otherwise.
To skip all whitespace including the end of line characters, use the SkipSpaces method.
|
|
SkipSpaces
|
Skips whitespace until a non-whitespace character is found, the end of line characters are also considered to be whitespace.
To skip whitespace only in the current line, use the SkipInLineSpaces method.
|
|
Write(Void,Longint)
|
Represents method Write(Void,Longint). (Inherited from GStreams.TGBufferStream.)
|
|
WriteArgs(TVarRec[])
|
Writes the arguments out to the stream. The method puts a space between every argument so that they may be properly parsed later.
To write out a group of arguments and terminate it with the end of line characters, use the WriteLn method.
|
|
WriteLn(TVarRec[])
|
Writes the arguments out to the stream and terminates them with the end of line characters. The method puts a space between every argument so that they may be properly parsed later.
To write out a group of arguments unterminated, use the WriteArgs method.
|