bdeIsBlockFrameVisible

Returns whether or not the frame of block is visible.

Syntax

visible = bdeIsBlockFrameVisible(block)

Inputs

block
The block to who's frame will be checked to see if it is visible or not.
Type: block

Outputs

visible
Boolean that represents whether or not the block frame is visible.
Type: Boolean

Examples

Check if block frame is visible or not:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          visible = bdeIsBlockFrameVisible(block);
        

          
            visible = 1