Publisher (的 ParagraphFormat.ListNumberStart 屬性)
會設定或擷取 Long ,代表清單的起始編號。 讀取/寫入。
語法
運算式。ListNumberStart
表達 代表 ParagraphFormat 物件的 變數。
傳回值
Long
註解
若清單並非編號清單,則傳回「拒絕存取」訊息。
範例
本範例會將 ParagraphFormat 物件的清單類型設定為 pbListTypeArabic (PbListType 列舉) ,並將 ListNumber 屬性設定為 4。
Dim objParaForm As ParagraphFormat
Set objParaForm = ActiveDocument.Pages(1).Shapes(1) _
.TextFrame.TextRange.ParagraphFormat
With objParaForm
.SetListType pbListTypeArabic
.ListNumberStart = 4
End With
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。