Parameters
- column
- Index of column
Return Value
Column object for the specified column
Exception | Description |
---|---|
System.IndexOutOfRangeException | Specified column index is out of range. It must be less than -1 or greater than or equal to the column count. |
FarPoint.Win.Spread.Column c c = fpSpread1.ActiveSheet.Columns.Get(0); c.BackColor = Color.Yellow;
Dim c As FarPoint.Win.Spread.Column c = fpSpread1.ActiveSheet.Columns.Get(0) c.BackColor = Color.Yellow