Share via


EmailOptions.PlainTextStyle Property

Word Developer Reference

Returns the Style object that represents the text attributes for e-mail messages that are sent or received using plain text.

Syntax

expression.PlainTextStyle

expression   A variable that represents a EmailOptions object.

Example

This example sets the plain text font for e-mail messages to Tahoma, size 10.

Visual Basic for Applications
  Sub PlainTxt()
    With Application.EmailOptions.PlainTextStyle
        .Font.Name = "Tahoma"
        .Font.Size = 10
    End With
End Sub

See Also