bdeIsBlockFlipped
Returns whether or not the block is flipped.
Syntax
flipped = bdeIsBlockFlipped(block)
Inputs
- block
- The block to check if flipped.
Outputs
- flipped
- Boolean of whether or not the block is flipped. 1 if it is flipped and 0 if it is not flipped.
Examples
diagram = bdeGetCurrentDiagram();
block = bdeGetSelectedBlock(diagram);
flipped = bdeIsBlockFlipped(block);
flipped = 0