[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Write a number of bytes to the stream.
Source position: objects.pp line 298
procedure TStream.Write( |
var Buf; |
Count: LongInt |
); virtual; |
Write is an abstract method that should be overridden by descendent objects.
Write writes Count bytes 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 Buf actually contains Count bytes.
|
Read data from stream to buffer. |
|
|
Write a pascal string to the stream. |
|
|
Write a null-terminated string to the stream. |