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.
Type: block
boolean
Boolean value to set whether or not the frame will be visible. true to have frame visible and false to be not visible.
Type: Boolean

Examples

Set a block's frame to be not visible:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockFrameVisibility(block, false);