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

Range Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.