Read or write a byte.
Source position: syshelph.inc line 1197
public property TIntegerHelper.Bytes[aIndex: TIntegerByteIndex] : Byte |
Bytes property reads or writes byte value to a byte number determined by argument aIndex.
MyInteger.Clear; // %00000000000000000000000000000000 MyInteger equals 0 MyInteger.Bytes[1] := 1; // %00000000000000000000000100000000 MyInteger equals 256 WriteLn(MyInteger.Bytes[1]); // 1
|
Read or write a bit. |
|
|
Read or write a nibble. |
|
TIntegerHelper.Words |
|
Read or write a word. |