打印自定义文档属性
Print a Custom doc property
这是我当前的代码。
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
这是我当前的代码。
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