Selection.Bookmarks (Word)
Returns a Bookmarks collection that represents all the bookmarks in a document, range, or selection.
For information about returning a single member of a collection, see Returning an object from a collection.
If Selection.Bookmarks.Count >= 1 Then
Selection.Bookmarks(1).Range.Bold = True
End If