'Declaration Public Overloads ReadOnly Property Item( _ ByVal column As Integer, _ ByVal column2 As Integer _ ) As Column
Parameters
- column
- Starting column index for the range
- column2
- Ending column index for the range
'Declaration Public Overloads ReadOnly Property Item( _ 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. |
fpSpread1.ActiveSheet.Columns[0].BackColor = Color.Teal; fpSpread1.ActiveSheet.Columns[1, 2].BackColor = Color.DarkSeaGreen;
fpSpread1.ActiveSheet.Columns.Item(0).BackColor = Color.Teal fpSpread1.ActiveSheet.Columns.Item(1, 2).BackColor = Color.DarkSeaGreen