[]
        
(Showing Draft Content)

FarPoint.Win.Spread.Columns.Item

this Property

this[string]

Gets the column for the specified tag.

Declaration
public Column this[string tag] { get; }
Public ReadOnly Default Property Item(tag As String) As Column
Parameters
Type Name Description
string tag
Property Value
Type Description
Column

a new column for the specified column.

this[int]

Gets a new column for the specified column.

Declaration
public Column this[int column] { get; }
Public ReadOnly Default Property Item(column As Integer) As Column
Parameters
Type Name Description
int column

Index of column

Property Value
Type Description
Column

a new column for the specified column.

Exceptions
Type Condition
IndexOutOfRangeException

Specified column index is out of range. It must be less than the column count or -1 for all.

this[int, int]

Gets a new column for the specified range of columns.

Declaration
public Column this[int column, int column2] { get; }
Public ReadOnly Default Property Item(column As Integer, column2 As Integer) As Column
Parameters
Type Name Description
int column

Starting column index

int column2

Ending column index

Property Value
Type Description
Column

a new column for the specified range of columns.

Exceptions
Type Condition
IndexOutOfRangeException

Specified column index is out of range. It must be less than the column count or -1 for all.