[]
Gets a new Cell object for the specified row and column.
public Cell Get(int row, int column)
Public Function [Get](row As Integer, column As Integer) As Cell
Type | Name | Description |
---|---|---|
int | row | Row index of cell |
int | column | Column index of cell |
Type | Description |
---|---|
Cell | A Cell at the special row, column. |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified row index is not valid; must be between zero and the total number of rows |
IndexOutOfRangeException | Specified column index is not valid; must be between zero and the total number of columns |
IndexOutOfRangeException | Specified row index is not valid; must be between zero and the total number of column header rows |
IndexOutOfRangeException | Specified column index is not valid; must be between zero and the total number of row header columns |
Gets a new Cell object for the range of cells of the specified rows and columns.
public Cell Get(int row, int column, int row2, int column2)
Public Function [Get](row As Integer, column As Integer, row2 As Integer, column2 As Integer) As Cell
Type | Name | Description |
---|---|---|
int | row | Starting row index of range of cells |
int | column | Starting column index of range of cells |
int | row2 | Ending row index of range of cells |
int | column2 | Ending column index of range of cells |
Type | Description |
---|---|
Cell | A range of cells at the special rows, columns |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified row or column index is less than 0 or greater than or equal to the row count or column count. |
IndexOutOfRangeException | Specified starting row index is not valid; must be between zero and the total number of rows |
IndexOutOfRangeException | Specified starting column index is not valid; must be between zero and the total number of columns |
IndexOutOfRangeException | Specified starting row index is not valid; must be between zero and the total number of column header rows |
IndexOutOfRangeException | Specified starting column index is not valid; must be between zero and the total number of row header columns |
IndexOutOfRangeException | Specified ending row index is not valid; must be between zero and the total number of rows |
IndexOutOfRangeException | Specified ending column index is not valid; must be between zero and the total number of columns |
IndexOutOfRangeException | Specified ending row index is not valid; must be between zero and the total number of column header rows |
IndexOutOfRangeException | Specified ending column index is not valid; must be between zero and the total number of row header columns |