API Documentation > CorelDRAW > 2025-v26 > Shape > IVGShape
Shape.OrderReverse method
Reverses the stacking order
Syntax:
Sub OrderReverse()
Remarks:
The OrderReverse method reverses the stacking order of all selected shapes. This method can be applied only to a selection shape.
Examples:
The following VBA example reverses the order of the selected shapes in the active document.
Sub Test()
ActiveSelection.OrderReverse 
End Sub