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.
Type: block

Outputs

split
A boolean value that represents whether or not the block is split. 1 for split, 0 for not split.
Type: Boolean

Examples

Check if block is split:

          diagram = bdeGetCurrentDiagram();
          fork = bdeGetBlockByFullName(diagram, 'fork');
          split = bdeIsBlockSplit(block);
        

          
            split = 1