BinaryStream.WriteInt32

From Xojo Documentation

Method

BinaryStream.WriteInt32(Value as Int32)

New in 2005r5

Supported for all project types and targets.

Writes the passed Int32 to the steam.

Sample Code

Var i As Int32 = 5
Var writeStream As BinaryStream
writeStream.WriteInt32(i)