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

Outputs

inlinable
Boolean that represents whether or not the block is an inlinable block. Gets this from the inlinable flag of the block.
Type: Boolean

Examples

Check if block is an inlinable block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          inlinable = bdeIsBlockInlinable(block);
        

          
            inlinable = 1