Word) (ListFormat.SingleListTemplate 屬性
True 是表示 如果整個 ListFormat 物件使用相同的清單範本。 唯讀的 Boolean。
語法
expression. SingleListTemplate
需要 expression。 代表 'ListFormat' 物件的變數。
範例
此範例會檢查選取範圍是否使用單一清單範本格式化。 如果是,此範例會將第二個編號清單範本套用至選取範圍。
Set myList = Selection.Range.ListFormat
temp = myList.SingleListTemplate
If temp = True Then
myList.ApplyListTemplate _
ListTemplate:=ListGalleries(wdNumberGallery) _
.ListTemplates(2)
End If
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。