GefObject.Flip (method)

Flips the object.
Syntax: object.Flip Orientation
Parameters:
Orientation As GefOrientationEnum -
Description: Flips the object about its center axis according to GefOrientationEnum which is either GefHorizontal or GefVertical.

Example:

Sub GefObject_Flip()
    
    Dim oCimObj As GefObject
    
    Set oCimObj = CimGetObject
    
    oCimObj.Flip gefHorizontal
    CimGetScreen.Refresh False
    MsgBox "The object was flipped horizontally"
    oCimObj.Flip gefVertical
    CimGetScreen.Refresh False
    MsgBox "The object was flipped vertically"
    oCimObj.Flip gefOrientationMixedValue
    CimGetScreen.Refresh False
    MsgBox "The object was reset"
    
End Sub