Word) (Range.ListFormat 屬性
會傳回 ListFormat 物件,代表某個範圍的特性的格式設定的所有清單。 唯讀。
語法
expression。 ListFormat
expression 代表 Range 物件的變數。
範例
本範例會將變數 myDoc 設為包含使用中文件之第三個至第六個段落的範圍。 然後,本範例會視該範圍是否已套用預設的大綱編號清單格式,將該格式套用至該範圍或將它移除。
Set myDoc = ActiveDocument
Set myRange = _
myDoc.Range(Start:= myDoc.Paragraphs(3).Range.Start, _
End:=myDoc.Paragraphs(6).Range.End)
myRange.ListFormat.ApplyOutlineNumberDefault
This example applies the second list template on the Numbered tab in the Bullets and Numbering dialog box to all the paragraphs in the selection.
Selection.Range.ListFormat.ApplyListTemplate _
ListTemplate:=ListGalleries(wdNumberGallery).ListTemplates(2)
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。