bdeIsBlockFlipped

Returns whether or not the block is flipped.

Syntax

flipped = bdeIsBlockFlipped(block)

Inputs

block
The block to check if flipped.
Type: block

Outputs

flipped
Boolean of whether or not the block is flipped. 1 if it is flipped and 0 if it is not flipped.
Type: Boolean

Examples

Check to see if block is flipped:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          flipped = bdeIsBlockFlipped(block);
        

          
            flipped = 0