[]
Gets the column for the specified tag.
public Column this[string tag] { get; }
Public ReadOnly Default Property Item(tag As String) As Column
Type | Name | Description |
---|---|---|
string | tag |
Type | Description |
---|---|
Column | a new column for the specified column. |
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 | Description |
---|---|
Column | a new column for the specified 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 | Description |
---|---|
Column | a new column for the specified range of columns. |
Type | Condition |
---|---|
IndexOutOfRangeException | Specified column index is out of range. It must be less than the column count or -1 for all. |