Expand Minimize
This topic has not yet been rated - Rate this topic

Application.DefaultWebOptions Method

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

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.

Visual Basic for Applications
Dim strDocEncoding As String

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



Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.