AddressFromLeft Property
Applies To
Envelope object.
Description
Returns or sets the distance (in points) between the left edge of the envelope and the delivery address. Read/write Single.
Note If you use this property before an envelope has been added to the document, an error occurs.
See Also
Address property, AddressFromTop property, Insert method, ReturnAddressFromLeft property, ReturnAddressFromTop property.
Example
This example creates a new document and adds an envelope with a predefined delivery address and return address. The example then sets the distance between the left edge of the envelope and the delivery address to 3.75 inches.
addr = "James Allard" & vbCr & "123 Skye St." & vbCr & "Our Town, WA 98004"
retaddr = "Rich Andrews" & vbCr & "123 Main" & vbCr & "Other Town, WA 98004"
With Documents.Add.Envelope
.Insert Address:=addr, ReturnAddress:=retaddr
.AddressFromLeft = InchesToPoints(3.75)
End With
ActiveWindow.View.Type = wdPageView