FarPoint.Win.Spread アセンブリ > FarPoint.Win.Spread 名前空間 > ColumnHeader クラス : Columns プロパティ |
このプロパティが使用できるのは実行時のみです。
FarPoint.Win.Spread.ColumnHeader ch; int i; ch = fpSpread1.ActiveSheet.ColumnHeader; ch.RowCount = 3; for (i = 0; i <= ch.Columns.Count - 1; i ++) { ch.Columns[i].BackColor = Color.Teal; }
Dim ch As FarPoint.Win.Spread.ColumnHeader Dim i As Integer ch = fpSpread1.ActiveSheet.ColumnHeader ch.RowCount = 3 For i = 0 To ch.Columns.Count - 1 ch.Columns(i).BackColor = Color.Teal Next