Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
True for Microsoft Word to use a theme when replying to email. 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 email 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
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.