Compartir a través de


Envelope.AddressStyle Property

Word Developer Reference

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.

Visual Basic for Applications
  With ActiveDocument.Envelope.AddressStyle.Font
    .Bold = False
    .Name = "Times New Roman"
    .Size = 16
End With

See Also