当前位置:  开发笔记 > 编程语言 > 正文

什么是DOCVARIABLE字样

如何解决《什么是DOCVARIABLE字样》经验,为你挑选了1个好方法。

什么是DOCVARIABLEMicrosoft Word 2003?我该如何设置?如何在Word文档中显示它?



1> Chris Serra..:

您可以使用Microsoft Visual Basic for Applications Variables集合来设置和检索Word文档或模板中的字符串变量的内容.

此外,在将文档变量设置为在Word文档中显示后,可以使用DocVariable字段检索文档变量的值.

来源:如何在Word文档中存储和检索变量

Sub GetSetDocVars()

Dim fName As String
fName = "Jeff Smith"
' Set contents of variable "fName" in a document using a document
' variable called "FullName".
ActiveDocument.Variables.Add Name:="FullName", Value:=fName
' Retrieve the contents of the document variable.
MsgBox ActiveDocument.Variables("FullName").Value

End Sub

推荐阅读
大大炮
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有