Gets a particular table cell from the collection.

GetItem()

public TableCell GetItem();
Public Function GetItem() As TableCell

GetItem(Int, Int)

public TableCell GetItem(int row, int column);
Public Function GetItem(ByVal row As Integer, ByVal column As Integer) As TableCell

Parameters

Parameter Description
row Specifies the row number. It must be between 1 and the value returned through the TableRowCollection.Count property.
column Specifies the column number. It must be between 1 and the value returned through the TableColumnCollection.Count property.

Return Value

The return value is the requested cell.