Envelope.SenderNamefromLeft property (Word)
Returns or sets a Single that represents the position, measured in points, of the sender's name from the left edge of the envelope. Read/write.
expression. SenderNamefromLeft
expression An expression that returns an 'Envelope' object.
Use this property for Asian language envelopes.
This example checks that the active document is a mail merge envelope and that it is formatted for vertical type. If so, it positions the recipient and sender address information.
Sub NewEnvelopeMerge()
With ActiveDocument
If .MailMerge.MainDocumentType = wdEnvelopes Then
With ActiveDocument.Envelope
If .Vertical = True Then
.RecipientNamefromLeft = InchesToPoints(2.5)
.RecipientNamefromTop = InchesToPoints(2)
.RecipientPostalfromLeft = InchesToPoints(1.5)
.RecipientPostalfromTop = InchesToPoints(0.5)
.SenderNamefromLeft = InchesToPoints(0.5)
.SenderNamefromTop = InchesToPoints(2)
.SenderPostalfromLeft = InchesToPoints(0.5)
.SenderPostalfromTop = InchesToPoints(3)
End If
End With
End If
End With
End Sub
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.