BinaryStream.WriteBoolean

From Xojo Documentation

Method

BinaryStream.WriteBoolean(Value as Boolean)

Supported for all project types and targets.

Writes the passed boolean to the stream.

Sample Code

Var b As Boolean = False
Var writeStream As BinaryStream
writeStream.WriteBoolean(b)