試圖從VBA代碼訪問CustomDocumentProperty。我檢查定製屬性存在的custom.xml文件。有什麼遺漏?這裏是docm文件!無法使用VBA訪問opn xml文檔的定製屬性
更新
我試着用下面的代碼添加,但它不添加任何東西。我需要將文件標記爲已處理。有沒有其他辦法可以完成這個目標?
With ActiveDocument.CustomDocumentProperties
.Add Name:="CustomNumber", _
LinkToContent:=False, _
Type:=msoPropertyTypeNumber, _
Value:=1000
.Add Name:="CustomString", _
LinkToContent:=False, _
Type:=msoPropertyTypeString, _
Value:="This is a custom property."
.Add Name:="CustomDate", _
LinkToContent:=False, _
Type:=msoPropertyTypeDate, _
Value:=Date
End With
Updated link to add custom field document
我已更新我的答案以迴應您編輯的問題。 – 2014-02-28 12:18:50