bdeIsBlockInlinable
Returns whether or not the block is inlinable. Inline blocks are blocks that are not included in the library system.
Syntax
inlinable = bdeIsBlockInlinable(block)
Inputs
- block
- The block to check if inlinable.
Outputs
- inlinable
- Boolean that represents whether or not the block is an inlinable block. Gets this from the inlinable flag of the block.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
inlinable = bdeIsBlockInlinable(block);
inlinable = 1