PlainTextStyle Property

Microsoft Word Visual Basic

PlainTextStyle Property

       

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

expression.PlainTextStyle

expression   Required. An expression that returns one of the objects in the Applies To list.

Example

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

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