bdeIsBlockMasked

Returns the value of the property 'masked' of a given block. Masking hides the interior blocks of a super block and changes the super block to appear and act like a regular block.

Syntax

masked = bdeIsBlockMasked(block)

Inputs

block
The block to check whether or not it is masked.
Type: block

Outputs

masked
A boolean value that represents whether or not the block is masked. 1 for masked, 0 for not masked.
Type: Boolean

Examples

Check if block is masked:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          masked = bdeIsBlockMasked(block);
        

          
            masked = 1