nOffset | (Long) Specifies the position of read value in the data block.
The read value must be inside the data block. The item is read either whole or not read at all. >= 0 - Index (in bytes, zero-based index) in the data block.
-4 - The internal automatic position is used (see the AutoOffset property). It points behind the last read or written value.
This operation does not shift the internal automatic position. |
---|---|
nBitIndex | (Long) Bit index (zero-based index).
The value must be any non-negative integer If the value is greater than 7, then the value is internally divided by 8 (one byte size). The position (nOffset) is incremented by the integer part of the division and the bit is the remainder after integer division. The resulting bit position must be in an existing data region. |
var oBuf = Pm.CreatePmBuffer();
oBuf.SetInt8(-2, 0);
oBuf.SetBit(0, 0, true);
oBuf.SetBit(0, 1, true);
oBuf.SetBit(0, 2, false);
oBuf.SetBit(0, 3, true);
oBuf.AutoOffset = 0;
var bit0 = oBuf.GetBit(0, 0);
var bit1 = oBuf.GetBit(0, 1);
var bit2 = oBuf.GetBit(0, 2);
var bit3 = oBuf.GetBit(0, 3);