Publisher) (儲存格物件
代表單一表格儲存格。 Cell 物件是 CellRange 成員 集合。 CellRange 集合代表所指定物件中的所有儲存格。
使用 Cells (index) , 其中 index 是儲存格編號,可傳回 Cell 物件。
本範例合併指定表格的第一欄的前兩個儲存格。
Sub MergeCell()
With ActiveDocument.Pages(1).Shapes(2).Table.Columns(1)
.Cells(1).Merge MergeTo:=.Cells(2)
End With
End Sub
本範例會在指定表格第二欄的第一個儲存格四周加上粗框線。
Sub OutlineBorderCell()
With ActiveDocument.Pages(1).Shapes(2).Table.Columns(2).Cells(1)
.BorderLeft.Weight = 5
.BorderRight.Weight = 5
.BorderTop.Weight = 5
.BorderBottom.Weight = 5
End With
End Sub
- Application
- BorderBottom
- BorderDiagonal
- BorderLeft
- BorderRight
- BorderTop
- CellTextOrientation
- 欄
- 斜對角線
- Fill
- HasText
- Height
- MarginBottom
- MarginLeft
- MarginRight
- MarginTop
- Parent
- 列
- Selected
- TextRange
- VerticalTextAlignment
- Width
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。