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