readUInt32
[ Function ]
public readUInt32(): number;
Reads four bytes and interprets them as an unsigned integer with a value range between 0 and 4,294,967,295. The read pointer is advanced by four bytes.
Parameter
Name | Type | Description |
---|---|---|
- | - | - |
Return value
Type | Description |
---|---|
The read UInt32 value |
Sample - JavaScript
var reader = new TcHmi.Base64BinaryReader('0gKWSQ==');
var result1 = reader.readUInt32(); // 1234567890
Available from version 1.10 |