Word) (Document.Tables 屬性
傳回 Table 集合,表示指定文件中的所有表格。 唯讀。
語法
expression。 Tables
表達 代表 Document 物件的變數。
註解
如需傳回集合中單一成員的資訊,請參閱 從集合傳回物件。
範例
本範例會在使用中文件建立一個 5 列 x 5 欄的表格,然後套用預先定義的格式。
Selection.Collapse Direction:=wdCollapseStart
Set myTable = ActiveDocument.Tables.Add(Range:=Selection.Range, _
NumRows:=5, NumColumns:=5)
myTable.AutoFormat Format:=wdTableFormatClassic2
這則範例會將編號及文字插入使用中文件內第一個表格的第一欄。
num = 90
For Each acell In ActiveDocument.Tables(1).Columns(1).Cells
acell.Range.Text = num & " Sales"
num = num + 1
Next acell
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。