本示例查看名为“temp”的书签是否存在和是否为空。

If ActiveDocument.Bookmarks.Exists("temp") = True Then
    If ActiveDocument.Bookmarks("temp").Empty = True Then _
        MsgBox "The Temp bookmark is empty"
End If