[]
Gets a new cell for the specified row and column.
public LayoutCell this[int row, int column] { get; }
Public ReadOnly Default Property Item(row As Integer, column As Integer) As LayoutCell
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. |
Gets a new cell for the range of cells of the specified rows and columns.
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
Type | Name | Description |
---|---|---|
int | row | Starting row index |
int | column | Starting column index |
int | row2 | Ending row index |
int | column2 | Ending column index |
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. |