[]
        
(Showing Draft Content)

FarPoint.Web.Spread.LayoutCells.Item

this Property

this[int, int]

Gets a new cell for the specified row and column.

Declaration
public LayoutCell this[int row, int column] { get; }
Public ReadOnly Default Property Item(row As Integer, column As Integer) As LayoutCell
Parameters
Type Name Description
int row

Row index

int column

Column index

Exceptions
Type Condition
IndexOutOfRangeException

Specified row index is out of range. It must be less than the row count or -1 for all.

IndexOutOfRangeException

Specified column index is out of range. It must be less than the column count or -1 for all.

this[int, int, int, int]

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

Declaration
public LayoutCell this[int row, int column, int row2, int column2] { get; }
Public ReadOnly Default Property Item(row As Integer, column As Integer, row2 As Integer, column2 As Integer) As LayoutCell
Parameters
Type Name Description
int row

Starting row index

int column

Starting column index

int row2

Ending row index

int column2

Ending column index

Exceptions
Type Condition
IndexOutOfRangeException

Specified starting row index is out of range. It must be between 0 and the total number of rows.

IndexOutOfRangeException

Specified starting column index is out of range. It must be between 0 and the total number of columns.

IndexOutOfRangeException

Specified ending row index is out of range. It must be between the starting row index and the total number of rows.

IndexOutOfRangeException

Specified ending column index is out of range. It must be between the starting column index and the total number of columns.