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