Target Property

Applies To

Browser object.

Description

Returns or sets the document item that the Previous and Next methods locate when they're applied to the Browser object. Read/write Long.

Can be one of the following WdBrowseTarget constants:

  • wdBrowseComment
  • wdBrowseEdit
  • wdBrowseEndnote
  • wdBrowseField
  • wdBrowseFind
  • wdBrowseFootnote
  • wdBrowseGoTo
  • wdBrowseGraphic
  • wdBrowseHeading
  • wdBrowsePage
  • wdBrowseSection
  • wdBrowseTable

See Also

Browser object, Browser property, Find property, GoBack method, GoForward method, GoTo method, GoToNext method, GoToPrevious method, Next method, Previous method.

Example

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

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