Read or write a dword.
Source position: syshelph.inc line 1391
|  public property TInt64Helper.DWords[aIndex: TInt64DwordIndex] : DWord | 
DWords property reads or writes dword value to a dword number determined by argument aIndex.
MyInt64.Clear; // %0000000000000000000000000000000000000000000000000000000000000000 MyInt64 equals 0 MyInt64.DWords[1] := 1; // %0000000000000000000000000000000100000000000000000000000000000000 MyInt64 equals 4294967296 WriteLn(MyInt64.DWords[1]); // 1
| 
 | Read or write a bit. | |
| 
 | Read or write a nibble. | |
| 
 | Read or write a byte. | |
| 
 | Read or write a word. |