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