看看MSDN吧,下面是MSDN中的例子:
This example inserts a list of built-in properties at the end of the active document.Sub ListProperties()
    Dim rngDoc As Range
    Dim proDoc As DocumentProperty    Set rngDoc = ActiveDocument.Content    rngDoc.Collapse Direction:=wdCollapseEnd    For Each proDoc In ActiveDocument.BuiltInDocumentProperties
        With rngDoc
            .InsertParagraphAfter
            .InsertAfter proDoc.Name & "= "
            On Error Resume Next
            .InsertAfter proDoc.Value
        End With
    Next
End Sub
This example displays the number of words in the active document.Sub DisplayTotalWords()
    Dim intWords As Integer
    intWords = ActiveDocument.BuiltInDocumentProperties(wdPropertyWords)
    MsgBox "This document contains " & intWords & " words."
End Sub