bdeSuperBlockAutoMask

Sets a superBlock to automatically set it's masked flag to true. Masking hides the interior blocks of a super block and changes the super block to appear and act like a regular block.

Syntax

bdeSuperBlockAutoMask(block)

Inputs

block
The block to automatically mask.
Type: block

Examples

Set a super block to automatically mask itself:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSuperBlockAutoMask(block);