DIAdem Help

Property: BlockLength for BinaryBlock

  • Updated2024-09-12
  • 1 minute(s) read

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
ObjectBinaryBlock
Object with this property
Object.BlockLengthLongInteger 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