Word) (Rows.HeadingFormat 屬性
True 是表示 如果指定的列或資料列格式化為表格標題。 讀取/寫入的 Long。
語法
expression。 HeadingFormat
表達 代表 Rows 物件的 變數。
註解
列設為當表格橫跨多個頁面重複表格的標題。 可以是 True 、 False 或 wdUndefined 。
範例
此範例會在使用中文件的開頭建立一個 5x5 的表格,然後將表格標題格式新增至第一個表格列中。
Dim rngTemp As Range
Dim tableNew As Table
Set rngTemp = ActiveDocument.Range(0, 0)
Set tableNewe = ActiveDocument.Tables.Add(rngTemp, 5, 5)
tableNew.Rows.HeadingFormat = True
此範例會判定含有插入點的列是否已格式化為表格標題。
If Selection.Information(wdWithInTable) = True Then
If Selection.Rows.HeadingFormat = True Then _
MsgBox "The current row is a table heading"
Else
MsgBox "The insertion point is not in a table."
End If
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。