Bagikan melalui


Document.DefaultTargetFrame Property (Word)

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

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

See Also

Concepts

Document Object Members

Document Object