[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Loads the contents of a stream into memory.
Source position: classesh.inc line 1068
public procedure TMemoryStream.LoadFromStream( |
Stream: TStream |
); |
LoadFromStream loads the contents of Stream into the memorybuffer of the stream. Any previous contents of the memory stream are overwritten. Memory is allocated as needed.
Remark: | The LoadFromStream uses the Size property of Stream to determine how much memory must be allocated. Some streams do not allow the stream size to be determined, so care must be taken when using this method. This method will work much faster than the use of the TStream.CopyFrom method: Seek(0,soFromBeginning); CopyFrom(Stream,Stream.Size); because the CopyFrom method copies the contents in blocks, while LoadFromStream reads the contents of the stream as one big block. |
If an error occurs when reading from the stream, an EStreamError may occur.
|
Copy data from one stream to another |
|
|
Loads the contents of a file into memory. |