打印自定义文档属性



这是我当前的代码。

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

编译错误:Method not valid without suitable object

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

你需要

用字符串调用CustomDocumentProperties。你忘了引号。

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

相关内容

  • 没有找到相关文章

最新更新