Read or write a byte.
Source position: syshelph.inc line 1389
public property TInt64Helper.Bytes[aIndex: TInt64ByteIndex] : Byte |
Bytes property reads or writes byte value to a byte number determined by argument aIndex.
MyInt64.Clear; // %0000000000000000000000000000000000000000000000000000000000000000 MyInt64 equals 0 MyInt64.Bytes[1] := 1; // %0000000000000000000000000000000000000000000000000000000100000000 MyInt64 equals 256 WriteLn(MyInt64.Bytes[1]); // 1
|
Read or write a bit. |
|
|
Read or write a nibble. |
|
|
Read or write a word. |
|
|
Read or write a dword. |