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.
Outputs
- masked
- A boolean value that represents whether or not the block is masked. 1 for masked, 0 for not masked.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
masked = bdeIsBlockMasked(block);
masked = 1