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

TQWordHelper.Bytes

Read or write a byte.

Declaration

Source position: syshelph.inc line 1322

public property TQWordHelper.Bytes[aIndex: TQwordByteIndex] : Byte
  read GetByte
  write PutByte;

Description

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

See also

TQWordHelper.Bits

  

Read or write a bit.

TQWordHelper.Nibbles

  

Read or write a nibble.

TQWordHelper.Words

  

Read or write a word.

TQWordHelper.DWords

  

Read or write a dword.


Documentation generated on: Jul 24 2023