'Declaration Public Overloads Function Get( _ ByVal column As Integer, _ ByVal column2 As Integer _ ) As Column
Parameters
- column
- Starting column index
- column2
- Ending column index
Return Value
Column object for the specified range of columns
'Declaration Public Overloads Function Get( _ ByVal column As Integer, _ ByVal column2 As Integer _ ) As Column
Exception | Description |
---|---|
System.IndexOutOfRangeException | Specified column index is out of range. It must be less than the column count or -1 for all. |
FarPoint.Win.Spread.Column c c = fpSpread1.ActiveSheet.Columns.Get(0, 2); c.BackColor = Color.Yellow;
Dim c As FarPoint.Win.Spread.Column c = fpSpread1.ActiveSheet.Columns.Get(0, 2) c.BackColor = Color.Yellow