bdeSetBlockFlippedImageAspectRatio

Sets the aspect ratio for a flipped image in block.

Syntax

bdeSetBlockFlippedImageAspectRatio(block, value)

Inputs

block
The block which the image is in.
Type: block
value
Boolean value to set the flipped image aspect ratio. Either true or false.
Type: Boolean

Examples

Set a block's flipped image aspect ratio:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockFlippedImageAspectRatio(block, true);