Compartir a través de


WebOptions.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 WebOptions collection.

Example

This example sets the target browser for the active document to Microsoft Internet Explorer 6 if the current target browser is an earlier version.

Visual Basic for Applications
  Sub SetWebBrowser()
    With ActiveDocument.WebOptions
        If .TargetBrowser < msoTargetBrowserIE6 Then
            .TargetBrowser = msoTargetBrowserIE6
        End If
    End With
End Sub

See Also