AddIns.Add 方法 (Word)
會傳回代表新增至可用增益集清單中之增益集的 AddIn 物件。
語法
運算式。新增 (FileName、 安裝)
需要 expression。 代表 'AddIns' 集合的變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
FileName | 必要 | String | 範本或 WLL 的路徑 |
Install | 選用 | Variant | 如果要安裝增益集,則為 True。 如果將增益集新增至增益集清單中,但不要加以安裝,則為 False。 預設值為 True。 |
註解
若要查看是否已安裝使用增益集的 Installed 屬性。
範例
This example installs a template named MyFax.dot and adds it to the list of add-ins in the Templates and Add-ins dialog box.
Sub AddTemplate()
' For this example to work correctly, verify that the
' path is correct and the file exists.
AddIns.Add FileName:="C:\Program Files\Microsoft Office" _
& "\Templates\Letters & Faxes\MyFax.dot", Install:=True
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。