Bookmarks.DefaultSorting Property

Word Developer Reference

Returns or sets the sorting option for bookmark names displayed in the Bookmark dialog box (Insert menu). Read/write WdBookmarkSortBy.

Syntax

expression.DefaultSorting

expression   Required. A variable that represents a Bookmarks collection.

Remarks

This property doesn't affect the order of Bookmark objects in the Bookmarks collection.

Example

This example sorts bookmarks by location and then displays the Bookmark dialog box.

Visual Basic for Applications
  ActiveDocument.Bookmarks.DefaultSorting = wdSortByLocation
Dialogs(wdDialogInsertBookmark).Show

See Also