Range.PreviousBookmarkID Property (Word)

Returns the number of the last bookmark that starts before or at the same place as the specified range. Read-only Long.

Syntax

expression .PreviousBookmarkID

expression A variable that represents a Range object.

Remarks

This property returns 0 (zero) if there is no corresponding bookmark

Example

This example displays the name of the bookmark that precedes the second paragraph.

num = ActiveDocument.Paragraphs(2).Range.PreviousBookmarkID 
If num <> 0 Then MsgBox ActiveDocument.Content.Bookmarks(num).Name

See Also

Concepts

Range Object Members

Range Object