Word) (Application.Templates 属性
返回 模板 集合,该集合代表所有可用的模板 共用模板和附加到打开文档。
语法
expression。 Templates
表达 返回 Application 对象的表达式。
备注
有关返回集合的单个成员的信息,请参阅 从集合中返回对象。
示例
本示例显示 Templates 集合中每个模板的名称。
Count = 1
For Each aTemplate In Templates
MsgBox aTemplate.Name & " is template number " & Count
Count = Count + 1
Next aTemplate
在此示例中,如果模板 1 是全局模板,则其路径存储在 中 thePath
。 ChDir 语句用来将存储在 thePath
的当前文件夹的文件夹的路径。 在进行此更改后,将显示 打开对话框。
If Templates(1).Type = wdGlobalTemplate Then
thePath = Templates(1).Path
If thePath <> "" Then ChDir thePath
Dialogs(wdDialogFileOpen).Show
End If
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。