[]
Gets a new row for the specified layout row.
public LayoutRow this[int row] { get; }
Public ReadOnly Default Property Item(row As Integer) As LayoutRow
Type | Name | Description |
---|---|---|
int | row | Index of layout row |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified row index is out of range. It must be less than the row count or -1 for all. |
Gets a new row for the specified range of layout rows.
public LayoutRow this[int row, int row2] { get; }
Public ReadOnly Default Property Item(row As Integer, row2 As Integer) As LayoutRow
Type | Name | Description |
---|---|---|
int | row | Starting row index of layout row range |
int | row2 | Ending row index of layout row range |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified row index is out of range. It must less than the row count or -1 for all. |