bdeIsBlockInlined

Returns whether or not the block is inlined. Inline blocks are blocks that are not included in the library system.

Syntax

inline = bdeIsBlockInlined(block)

Inputs

block
The block to check whether or not it is an inline block.
Type: block

Outputs

inline
Boolean that represents whether or not the block is an inline block.
Type: Boolean

Examples

Check if block in an inline block:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          inline = bdeIsBlockInlined(block);
        

          
            inline = 1