[]
Gets a specified row.
public Row Get(int row)
Public Function [Get](row As Integer) As Row
| Type | Name | Description |
|---|---|---|
| int | row | Row index |
| Type | Description |
|---|---|
| Row | A specified row. |
| Type | Condition |
|---|---|
| IndexOutOfRangeException | Specified row index is out of range. It must less than the row count or -1 for all. |
Gets a specified range of rows.
public Row Get(int row, int row2)
Public Function [Get](row As Integer, row2 As Integer) As Row
| Type | Name | Description |
|---|---|---|
| int | row | Starting row index |
| int | row2 | Ending row index |
| Type | Description |
|---|---|
| Row | A specified range of rows. |
| Type | Condition |
|---|---|
| IndexOutOfRangeException | Specified row index is out of range. It must less than the row count or -1 for all. |