TStream.WriteByte
Write a byte to the stream.
Declaration
Source position: classesh.inc line 1123
public
procedure WriteByte(b: Byte);
Description
WriteByte writes the byte B to the stream. This is a utility function which simply calls the Write function. The byte can be read from the stream using the ReadByte function.
Errors
If an error occurs when attempting to write, an EStreamError exception will be raised.
See also
Name | Description |
---|---|
TStream.ReadByte | Read a byte from the stream and return its value. |
TStream.Write | Writes data from a buffer to the stream and returns the number of bytes written. |
TStream.WriteAnsiString | Write an ansistring to the stream. |
TStream.WriteDWord | Write a DWord to the stream. |
TStream.WriteWord | Write a word to the stream. |