AddressStyle Property

Applies To

Envelope object.

Description

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.

See Also

Address property, ReturnAddress property, ReturnAddressStyle property.

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