Shape.GetLeft method (Publisher)

Returns the distance of the shape's or shape range's left edge from the left edge of the leftmost page in the current view as a Single in the specified units.

Syntax

expression.GetLeft (Unit)

expression A variable that represents a Shape object.

Parameters

Name Required/Optional Data type Description
Unit Required PbUnitType The units in which to return the distance. Can be one of the PbUnitType constants declared in the Microsoft Publisher type library.

Return value

Single

Remarks

Use the GetTop method to return the distance of a shape's or shape range's top edge from the top edge of the leftmost page in the current view.

Example

The following example displays the distances from the left and top edges of the leftmost page to the left and top edges of a shape range consisting of all the shapes on the first page. The distances are expressed in inches (to the nearest hundredth).

With ActiveDocument.Pages(1).Shapes.Range 
 MsgBox "Distance from left: " _ 
 & Format(.GetLeft(Unit:=pbUnitInch), "0.00") _ 
 & " in" & vbCr _ 
 & "Distance from top: " _ 
 & Format(.GetTop(Unit:=pbUnitInch), "0.00") _ 
 & " in" 
End With

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.