Document.DefaultTargetFrame Property

Word Developer Reference

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

Syntax

expression.DefaultTargetFrame

expression   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 Office Word to open a new blank browser window when a user clicks a hyperlink in the active document.

Visual Basic for Applications
  Sub DefaultFrame()
    ActiveDocument.DefaultTargetFrame = "_blank"
End Sub

See Also