bdeIsBlockLabelVisible
Gets whether or not the label of block is visible.
Syntax
isVisible = bdeIsBlockLabelVisible(block)
Inputs
- block
 - The block to check visibility of label.
 
Outputs
- isVisible
 - Boolean that tells whether the label of block is visible.
 
Examples
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          isVisible = bdeIsBlockLabelVisible(block)
        
        
          isVisible = 0
        
      
          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          isVisible = bdeIsBlockLabelVisible(block)
        
        
          isVisible = 1