[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Write data to the stream.
Source position: objects.pp line 379
procedure TMemoryStream.Write( |
var Buf; |
Count: LongInt |
); virtual; |
Write copies Count bytes from Buf to the stream. It updates the position of the stream.
If not enough memory is available to hold the extra Count bytes, then the stream will try to expand, by allocating as much blocks with size BlkSize (as specified in the constuctor call Init) as needed.
For an example, see TStream.Read.
If the stream cannot allocate more memory, then the status is set to stWriteError
|
Write a number of bytes to the stream. |
|
|
Read data from the stream to a location in memory. |