Share via


EmailOptions.UseThemeStyleOnReply Property (Word)

True for Microsoft Word to use a theme when replying to e-mail. Read/write Boolean.

Syntax

expression .UseThemeStyleOnReply

expression An expression that returns an EmailOptions object.

Example

This example tells Word to use a theme when replying to e-mail if Word uses a theme for new messages.

Sub NewTheme() 
 With Application.EmailOptions 
 If .UseThemeStyle = True Then 
 .UseThemeStyleOnReply = True 
 End If 
 End With 
End Sub

See Also

Concepts

EmailOptions Object Members

EmailOptions Object