Read or write a nibble.
Source position: syshelph.inc line 950
 public property TShortIntHelper.Nibbles[aIndex: TShortIntNibbleIndex] : nibble  | 
Nibbles property reads or writes nibble value to a nibble number determined by argument aIndex.
MyShortInt.Clear; // %00000000 MyShortInt equals 0 MyShortInt.Nibbles[1] := 3; // %00110000 MyShortInt equals 48 WriteLn(MyShortInt.Nibbles[1]); // 3
  | 
Read or write a bit.  |