Skip to content

TMemoryStream.Write

Write data to the stream.

Declaration

Source position: objects.pp line 410

default 
  procedure Write(var Buf; Count: LongInt);  Virtual;

Description

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 constructor call Init ) as needed.

For an example, see TStream.Read .

Errors

If the stream cannot allocate more memory, then the status is set to stWriteError

See also

Name Description
TMemoryStream.Read Read data from the stream to a location in memory.
TStream.Write Write a number of bytes to the stream.