Envelope.AddressFromLeft property (Word)
Returns or sets the distance (in points) between the left edge of the envelope and the delivery address. Read/write Single.
Syntax
expression. AddressFromLeft
expression A variable that represents a 'Envelope' object.
Remarks
If you use this property before an envelope has been added to the document, an error occurs.
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.
Dim strAddress As String
Dim strReturn As String
strAddress = "James Allard" & vbCr & "123 Skye St." & vbCr _
& "Our Town, WA 98004"
strReturn = "Rich Andrews" & vbCr & "123 Main" & vbCr _
& "Other Town, WA 98004"
With Documents.Add.Envelope
.Insert Address:=strAddress, ReturnAddress:=strReturn
.AddressFromLeft = InchesToPoints(3.75)
End With
ActiveDocument.ActiveWindow.View.Type = wdPrintView
See also
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.