GefObject.Left (property)

Gets and sets the left position of the object.
Syntax: long = object.Left
object.Left = long
Description: For GefObject, it returns the left position of the object in TWIPS.(0,0) is the bottom left corner of the screen.

Example:

Sub GefObject_Left()
    
    Dim oCimObj As GefObject
    
    Set oCimObj = CimGetObject
    
    MsgBox "The left of the object is " & _
        oCimObj.Left & " in twips"
    MsgBox "The left of the object is " & _
        (oCimObj.Left / 20) & " in points"
    
End Sub