共用方式為


Word) (Cells 物件

一組 儲存格 表格欄、 表格列、 選取範圍或範圍的物件。

註解

使用 儲存格 屬性可傳回 Cells 集合。 下列範例會將格式設定為 30 點的整體使用中文件內第一個表格的第一列中的儲存格。

ActiveDocument.Tables(1).Rows(1).Cells.Width = 30

下列範例會傳回目前列中的儲存格數。

num = Selection.Rows(1).Cells.Count

使用 Add 方法可將 Cell 物件新增至 Cells 集合。 您也可以使用 InsertCellsSelection 物件插入新儲存格的方法。 下列範例會在 myTable 的第一個儲存格前面加入一個儲存格。

Set myTable = ActiveDocument.Tables(1) 
myTable.Range.Cells.Add BeforeCell:=myTable.Cell(1, 1)

使用 單元 格 (列、資料行) ,其中 row 是列編號,而 column 是欄號 ,或是 Cells (索 引) , 其中 index 是索引編號,可以傳回 Cell 物件。 下列範例會將網底套用至第一個表格的第一列的第二個儲存格。

Set myCell = ActiveDocument.Tables(1).Cell(Row:=1, Column:=2) 
myCell.Shading.Texture = wdTexture20Percent

下列範例會將網底套用至第一列中的第一個儲存格。

ActiveDocument.Tables(1).Rows(1).Cells(1).Shading _ 
 .Texture = wdTexture20Percent

備註

搭配 RowsColumns 集合的 Add 方法來加入一列或欄的儲存格。 下列範例會將欄新增至使用中文件的第一個表格,,然後插入第一欄中的數字。

Set myTable = ActiveDocument.Tables(1) 
Set aColumn = myTable.Columns.Add(BeforeColumn:=myTable.Columns(1)) 
For Each aCell In aColumn.Cells 
 aCell.Range.Delete 
 aCell.Range.InsertAfter num + 1 
 num = num + 1 
Next aCell

方法

名稱
Add
AutoFit
Delete
DistributeHeight
DistributeWidth
項目
Merge
SetHeight
SetWidth
分割

屬性

名稱
Application
Borders
數目
Creator
Height
HeightRule
NestingLevel
Parent
PreferredWidth
PreferredWidthType
Shading
VerticalAlignment
Width

請參閱

Word 物件模型參考資料

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應