Application.DefaultWebOptions method (Word)

Returns the DefaultWebOptions object that contains global application-level attributes used by Microsoft Word whenever you save a document as a webpage or open a webpage.

Syntax

expression. DefaultWebOptions

expression Required. A variable that represents an Application object.

Return value

DefaultWebOptions

Example

This example checks to see whether the default setting for document encoding is Western, and then it sets the string strDocEncoding accordingly.

Dim strDocEncoding As String 
 
If Application.DefaultWebOptions.Encoding _ 
 = msoEncodingWestern Then 
 strDocEncoding = "Western" 
Else 
 strDocEncoding = "Other" 
End If

See also

Application Object

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.