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.
 
Outputs
- inline
 - Boolean that represents whether or not the block is an inline block.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          inline = bdeIsBlockInlined(block);
        
        
          
            inline = 1