[]
Gets the specified column.
public Column Get(int column)
Public Function [Get](column As Integer) As Column
Type | Name | Description |
---|---|---|
int | column | Index of column |
Type | Description |
---|---|
Column | A Column object. |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified column index is out of range. It must be less than -1 or greater than or equal to the column count. |
Gets the specified range of columns.
public Column Get(int column, int column2)
Public Function [Get](column As Integer, column2 As Integer) As Column
Type | Name | Description |
---|---|---|
int | column | Starting column index |
int | column2 | Ending column index |
Type | Description |
---|---|
Column | A Column object. |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified column index is out of range. It must be less than the column count or -1 for all. |