bdeSetBlockInlinableFlag
Sets the inlinable flag of a given block. Inline blocks are blocks that are not included in the library system.
Syntax
bdeSetBlockInlinableFlag(block, flag)
Inputs
- block
- The block which will have it's inlinable flag set.
- flag
- The boolean value to set the flag to. true for inlinable, false for not inlinable.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
bdeSetBlockInlinableFlag(block, false);