BinaryStream.WriteUInt32

From Xojo Documentation

Method

BinaryStream.WriteUInt32(value as Uint32)

New in 2005r5

Supported for all project types and targets.

Writes the passed Uint32 to the steam.

Sample Code

Var i As UInt32 = 427
Var writeStream As BinaryStream
writeStream.WriteUInt32(i)