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.
Returns or sets a WdBrowserLevel constant that represents the level of the web browser for which you want to target new Web pages created in Microsoft Word. Read/write.
Syntax
expression. BrowserLevel
expression Required. A variable that represents a DefaultWebOptions collection.
Remarks
After you set the BrowserLevel property on the DefaultWebOptions object, the BrowserLevel property of any new Web pages you create in Word will be the same as the global setting.
Example
This example sets Word to optimize new Web pages for Microsoft Internet Explorer 5 and creates a webpage based on this setting.
With Application.DefaultWebOptions
.BrowserLevel = wdBrowserLevelMicrosoftInternetExplorer5
.OptimizeForBrowser = True
End With
Documents.Add DocumentType:=wdNewWebPage
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.