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

See also

Envelope Object

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.