本示例将所选内容中用第一个书签标记的文本区域的格式设置为加粗。

If Selection.Bookmarks.Count >= 1 Then
    Selection.Bookmarks(1).Range.Bold = True
End If