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