-1

我正在编写一个 DXL 脚本,它将数据从 IBM Rational DOORS 导出到 MS Word。我正在使用一个用于导出的模板 (.docm),并且我在模板中编写了宏,DXL 在执行期间将使用这些宏。

更新文档属性(自定义)时遇到问题。我正在使用以下代码,但文档属性未更新。

子宏名称(文本作为字符串)

暗淡 sPropName 作为字符串

sPropName = "Autor"

ActiveDocument.CustomDocumentProperties(sPropName).Value = text

结束子

有人可以请教。

4

1 回答 1

0

我在 Word 对象模型中找到了解决方案。阅读此处Document.CustomDocumentProperties 属性 (Word)的“备注”部分

使用此代码。

Sub macro_name(text As String)

    Dim sPropName As String

    sPropName = "Autor"
    ActiveDocument.BuiltInDocumentProperties(sPropName).Value = text

End Sub

希望这可以帮助 :)

于 2015-11-04T10:38:32.997 回答