共用方式為


Word) (Application.ListGalleries 屬性

會傳回代表三個清單範本資源庫的 ListGalleries 集合。 .

語法

expressionListGalleries

expression 代表 Application 物件的變數。

註解

每個範本庫 (項目符號、編號及大綱編號) 都會對應至 [項目符號及編號] 對話方塊 ([格式] 功能表) 中的索引標籤。 如需傳回集合中單一成員的資訊,請參閱 從集合傳回物件

範例

This example sets the variable mylsttmp to the second list template on the Outline Numbered tab in the Bullets and Numbering dialog box. The example then applies that template to the first list in the active document.

Set mylsttmp = _ 
 ListGalleries(wdOutlineNumberGallery).ListTemplates(2) 
ActiveDocument.Lists(1).ApplyListTemplate ListTemplate:=mylsttmp

本範例會循環 ListGalleries 集合並將每個清單範本庫中的範本變更回內建的範本。

For Each listgal In ListGalleries 
 For i = 1 To 7 
 listgal.Reset(i) 
 Next i 
Next listgal

另請參閱

Application 物件

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應