Envelope.AddressStyle Property (Word)
Returns a Style object that represents the delivery address style for the envelope. Read-only.
Syntax
expression .AddressStyle
expression A variable that represents a Envelope object.
Remarks
If an envelope is added to the document, text formatted with the Envelope Address style is automatically updated.
Example
This example modifies the font formatting associated with the Envelope Address style.
With ActiveDocument.Envelope.AddressStyle.Font
.Bold = False
.Name = "Times New Roman"
.Size = 16
End With