Property: BlockLength for BinaryBlock
- Updated2024-09-12
- 1 minute(s) read
DataPlugin > Properties > Property: BlockLength for BinaryBlock
Property: BlockLength for BinaryBlock
Specifies the number of values that a channel in the BinaryBlock contains.
If the number is -1, the block extends to the end of the file.
Object.BlockLength
Object | BinaryBlock Object with this property |
Object.BlockLength | LongInteger with read and write access |
The following example checks the block type and sets the block length according to this block type:
If oBlock.IsKindOf(eBinaryBlock) Then oBlock.BlockLength = -1 Else oBlock.BlockLength = 20 End If