bdeIsBlockSplit
Returns the whether or not the block is split. Block is split when it is created using the template 'system/Links/Split'.
Syntax
split = bdeIsBlockSplit(block)
Inputs
- block
- The block to check whether or not it is split.
Outputs
- split
- A boolean value that represents whether or not the block is split. 1 for split, 0 for not split.
Examples
diagram = bdeGetCurrentDiagram();
fork = bdeGetBlockByFullName(diagram, 'fork');
split = bdeIsBlockSplit(block);
split = 1