[]
        
(Showing Draft Content)

FarPoint.Win.Spread.Cells.Get

Get Method

Get(int, int)

Gets a new Cell object for the specified row and column.

Declaration
public Cell Get(int row, int column)
Public Function [Get](row As Integer, column As Integer) As Cell
Parameters
Type Name Description
int row

Row index of cell

int column

Column index of cell

Returns
Type Description
Cell

A Cell at the special row, column.

Exceptions
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

Get(int, int, int, int)

Gets a new Cell object for the range of cells of the specified rows and columns.

Declaration
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
Parameters
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

Returns
Type Description
Cell

A range of cells at the special rows, columns

Exceptions
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