AddressStyle Property

Microsoft Word Visual Basic

Returns a Style object that represents the delivery address style for the envelope. Read-only

Note  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