Word) (ListFormat.ListIndent 方法
增加為指定的 ListFormat 物件,以一層的方式累加範圍中段落的清單階層。
語法
expression. ListIndent
需要 expression。 代表 'ListFormat' 物件的變數。
範例
這則範例會將第一份文件中第一個清單內的每個段落縮排一層。
Documents(1).Lists(1).Range.ListFormat.ListIndent
這則範例會將使用中文件內第四至第八個段落格式化成大綱編號清單,然後將這些段落縮排一層。
Dim docActive As Document
Dim rngTemp As Range
Set docActive = ActiveDocument
Set rngTemp = _
docActive.Range( _
Start:=docActive.Paragraphs(4).Range.Start, _
End:=docActive.Paragraphs(8).Range.End)
With rngTemp.ListFormat
.ApplyOutlineNumberDefault
.ListIndent
End With
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。