[]
        
(Showing Draft Content)

FarPoint.Win.Spread.Columns.Get

Get Method

Get(int)

Gets the specified column.

Declaration
public Column Get(int column)
Public Function [Get](column As Integer) As Column
Parameters
Type Name Description
int column

Index of column

Returns
Type Description
Column

A Column object.

Exceptions
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.

Get(int, int)

Gets the specified range of columns.

Declaration
public Column Get(int column, int column2)
Public Function [Get](column As Integer, column2 As Integer) As Column
Parameters
Type Name Description
int column

Starting column index

int column2

Ending column index

Returns
Type Description
Column

A Column object.

Exceptions
Type Condition
IndexOutOfRangeException

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