DefaultWebOptions.TargetBrowser Property (PowerPoint)
Represents the default browser used with Microsoft PowerPoint. Read/write.
Syntax
expression .TargetBrowser
expression A variable that represents a DefaultWebOptions object.
Return Value
MsoTargetBrowser
Remarks
The value of the TargetBrowser property can be one of these MsoTargetBrowser constants.
msoTargetBrowserIE4 |
msoTargetBrowserIE5 |
msoTargetBrowserIE6 |
msoTargetBrowserV3 |
msoTargetBrowserV4 |
Example
This example sets the target browser for all presentations to Internet Explorer 6.
Sub GlobalTargetBrowser()
Application.DefaultWebOptions _
.TargetBrowser = msoTargetBrowserIE6
End Sub