Word) (Documents.Add 方法
傳回代表新的空白文件的 Document 物件加入至開啟的文件的集合。
運算式。新增 (範本、 NewTemplate、 DocumentType、 Visible)
需要 expression。 代表 Documents 物件的變數。
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Template | 選用 | Variant | 用於新文件的範本名稱。 如果省略此引數,就會使用 Normal 範本。 |
NewTemplate | 選用 | Variant | True 是表示 開啟文件為範本。 預設值為 False 。 |
DocumentType | 選用 | Variant | 可以是下列 WdNewDocumentType 常數之一: wdNewBlankDocument 、 wdNewEmailMessage 、 wdNewFrameset 或 wdNewWebPage 。 預設的常數是 wdNewBlankDocument 。 |
Visible | 選用 | Variant | True 是表示 在可見的視窗中開啟文件。 如果這個值是 False ,Microsoft Word 開啟的文件,但將文件視窗的 Visible 屬性設 為 False 。 預設值為 True。 |
文件
這則範例會根據 Normal 範本,建立新的文件。
Documents.Add
這則範例會根據 Professional Memo 範本,建立新的文件。
Documents.Add Template:="C:\Program Files\Microsoft Office" _
& "\Templates\Memos\Professional Memo.dot"
這則範例會使用附加至使用中文件的範本做為模型,建立並開啟新的範本。
tmpName = ActiveDocument.AttachedTemplate.FullName
Documents.Add Template:=tmpName, NewTemplate:=True
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。