[]
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 |
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 | Description |
---|---|
Row |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified row index is out of range. It must less than the row count or -1 for all. |