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