DefaultTargetFrame Property

Microsoft Word Visual Basic

DefaultTargetFrame Property

       

Returns or sets a String indicating the browser frame in which to display a Web page reached through a hyperlink. Read/write.

expression.DefaultTargetFrame

expression   Required. An expression that returns a Document object.

Remarks

While the DefaultTargetFrame property can use any user-defined string, it has the following predefined strings:  "_top", "_blank", "_parent", and "_self".

Example

This example sets Microsoft Word to open a new blank browser window when a user clicks on hyperlinks in the active document.

Sub DefaultFrame()
    ActiveDocument.DefaultTargetFrame = "_blank"
End Sub