bdeDoFlipBlock

Flips the block within the ui.

Syntax

bdeDoFlipBlock(block)

Inputs

block
The block to flip horizontally.
Type: block

Examples

Flip a block within a diagram:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeDoFlipBlock(block);
          bdeRedrawDiagram(diagram)