API Documentation
>
CorelDRAW
>
2025-v26
>
ShapeRange
>
IVGShapeRange
ShapeRange.Flip method
Mirrors all shapes within the range, either horizontall andor vertically
Syntax:
Sub
Flip
(
ByVal
Axes
As
cdrFlipAxes
)
Parameters:
Name
Type
Description
Axes
cdrFlipAxes
Remarks:
The
Flip
method flips all the shapes in a shape range. Shapes can be flipped horizontally or vertically, or in both directions.
Examples:
The following VBA example flips, upside-down, all the shapes on the active page.
Sub Test() ActivePage.Shapes.All.Flip cdrFlipHorizontal + cdrFlipVertical End Sub