Table.Cell Method
Returns a Cell object that represents a cell in a table.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Function Cell ( _
Row As Integer, _
Column As Integer _
) As Cell
'Usage
Dim instance As Table
Dim Row As Integer
Dim Column As Integer
Dim returnValue As Cell
returnValue = instance.Cell(Row, Column)
Cell Cell(
int Row,
int Column
)
Parameters
- Row
Type: System.Int32
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
Type: System.Int32
The number of the column in the table to return. Can be an integer between 1 and the number of columns in the table.
Return Value
Type: Microsoft.Office.Interop.PowerPoint.Cell