bdeSetBlockFlippedImageIconPath

Sets the path for a flipped image in block.

Syntax

bdeSetBlockFlippedImageIconPath(block, path)

Inputs

block
The block which the image is in.
Type: block
path
String value of the path to set the flipped image path to.
Type: string

Examples

Set a block's flipped image path:

          diagram = bdeGetCurrentDiagram();
          block = bdeGetSelectedBlock(diagram);
          bdeSetBlockFlippedImageIconPath(block, 'C:\Users\user\Desktop\TestFlippedPic.jpg');