Target Property Example

This example moves the insertion point to the next comment in the active document.

With Application.Browser
    .Target = wdBrowseComment
    .Next
End With

This example sets the specified hyperlink to open in a new browser window.

ActiveDocument.Hyperlinks(1).Target = "_blank"

This example sets the specified hyperlink to open in the frame called "left."

ActiveDocument.Hyperlinks(1).Target = "left"