打印自定义doc属性

时间:2015-01-07 15:17:10

标签: vba word-2010 custom-properties

这是我目前的代码。

Sub PrintMasterTime()

Dim PropVal As Integer
    PropVal = ActiveDocument.CustomDocumentProperties(MasterTime).Value
    Print PropVal

End Sub

编译错误:Method not valid without suitable object

不确定为什么不打印。 "MasterTime"是我的自定义文档属性的名称。

1 个答案:

答案 0 :(得分:1)

您需要使用字符串调用CustomDocumentProperties。你忘记了引号。

PropVal = ActiveDocument.CustomDocumentProperties("MasterTime").Value