bdeSetBlockFrameVisibility
Sets the flag that determines whether or not the block frame is visible.
Syntax
bdeSetBlockFrameVisibility(block, boolean)
Inputs
- block
- The block to set the frame to be visible or not.
- boolean
- Boolean value to set whether or not the frame will be visible. true to have frame visible and false to be not visible.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
bdeSetBlockFrameVisibility(block, false);