Options.AutoFormatPlainTextWordMail Property

Word Developer Reference

True if Word automatically formats plain-text e-mail messages when you open them in Word. Read/write Boolean.

Syntax

expression.AutoFormatPlainTextWordMail

expression   A variable that represents an Options object.

Example

This example sets Word to automatically format any plain-text e-mail messages that are opened.

Visual Basic for Applications
  Options.AutoFormatPlainTextWordMail = True

This example returns the status of the Plain text WordMail documents option on the AutoFormat tab in the AutoCorrect dialog box (Tools menu).

Visual Basic for Applications
  Dim blnAutoFormat as Boolean

blnAutoFormat = Options.AutoFormatPlainTextWordMail

See Also