Read or write a byte.
Source position: syshelph.inc line 1057
public property TSmallIntHelper.Bytes[aIndex: TSmallIntByteIndex] : Byte |
Bytes property reads or writes byte value to a byte number determined by argument aIndex.
MySmallInt.Clear; // %0000000000000000 MySmallInt equals 0 MySmallInt.Bytes[1] := 1; // %0000000100000000 MySmallInt equals 256 WriteLn(MySmallInt.Bytes[1]); // 1
|
Read or write a bit. |
|
|
Read or write a nibble. |