Read or write a nibble.
Source position: syshelph.inc line 1056
public property TSmallIntHelper.Nibbles[aIndex: TSmallIntNibbleIndex] : nibble |
Nibbles property reads or writes nibble value to a nibble number determined by argument aIndex.
MySmallInt.Clear; // %0000000000000000 MySmallInt equals 0 MySmallInt.Nibbles[1] := 3; // %0000000000110000 MySmallInt equals 48 WriteLn(MySmallInt.Nibbles[1]); // 3
|
Read or write a bit. |
|
|
Read or write a byte. |