Compartilhar via


EmailAuthor.Style Property

Word Developer Reference

Returns a Style object that represents the style associated with the current e-mail author for unsent replies, forwards, or new e-mail messages.

Syntax

expression.Style

expression   Required. A variable that represents an EmailAuthor object.

Example

This example returns the style associated with the current author for unsent replies, forwards, or new e-mail messages and displays the name of the font associated with this style.

Visual Basic for Applications
  Set MyEmailStyle = _
    ActiveDocument.Email.CurrentEmailAuthor.Style
Msgbox MyEmailStyle.Font.Name

See Also