DefaultWebOptions.TargetBrowser Property

Word Developer Reference

Sets or returns an MsoTargetBrowser constant representing the target browser for documents viewed in a Web browser. Read/write.

Syntax

expression.TargetBrowser

expression   Required. A variable that represents a DefaultWebOptions collection.

Example

This example sets the target browser for all documents to Internet Explorer 6.

Visual Basic for Applications
  Sub GlobalTargetBrowser()
    Application.DefaultWebOptions _
        .TargetBrowser = msoTargetBrowserIE6
End Sub

See Also