Table.Cell Method
Word Developer Reference |
Returns a Cell object that represents a cell in a table.
Syntax
expression.Cell(Row, Column)
expression Required. A variable that represents a Table object.
Parameters
Name | Required/Optional | Data Type | Description |
---|---|---|---|
Row | Required | Long | The number of the row in the table to return. Can be an integer between 1 and the number of rows in the table. |
Column | Required | Long | The number of the cell in the table to return. Can be an integer between 1 and the number of columns in the table. |
Return Value
Cell
Example
This example creates a 3x3 table in a new document and inserts text into the first and last cells in the table.
Visual Basic for Applications |
---|
|
This example deletes the first cell from the first table in the active document.
Visual Basic for Applications |
---|
|
See Also