[Overview][Constants][Types][Classes][Procedures and functions][Variables] |
Write a number of bytes to the stream.
Source position: objects.pp line 295
procedure TStream.Write( |
var Buf; |
Count: LongInt |
); virtual; |
Writeis an abstract method that should be overridden by descendent objects.
Writewrites Countbytes to the stream from Buf. It updates the position pointer, increasing it's value with Count.
For an example, see TStream.Read.
No checking is done to see if Bufactually contains Countbytes.
|
Read data from stream to buffer. |
|
|
Write a pascal string to the stream. |
|
|
Write a null-terminated string to the stream. |