Unit 'sysutils' Package
[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] [#rtl]

TInt64Helper.DWords

Read or write a dword.

Declaration

Source position: syshelph.inc line 1386

public property TInt64Helper.DWords[aIndex: TInt64DwordIndex] : DWord
  read GetDWord
  write PutDWord;

Description

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

See also

TInt64Helper.Bits

  

Read or write a bit.

TInt64Helper.Nibbles

  

Read or write a nibble.

TInt64Helper.Bytes

  

Read or write a byte.

TInt64Helper.Words

  

Read or write a word.


Documentation generated on: Jul 24 2023