FarPoint.Web.Spread 名前空間 > ColumnHeader クラス : DefaultStyle プロパティ |
次のサンプル コードは、背景を赤に設定し、そのスタイルを列ヘッダに適用します。これにより、すべての列ヘッダの背景色が赤に設定されます。
FarPoint.Web.Spread.ColumnHeader colhdr;
FarPoint.Web.Spread.StyleInfo mystyle = new FarPoint.Web.Spread.StyleInfo();
mystyle.BackColor = Color.Red;
colhdr = FpSpread1.ActiveSheetView.ColumnHeader;
colhdr.DefaultStyle = mystyle;
Dim colhdr As FarPoint.Web.Spread.ColumnHeader Dim mystyle As New FarPoint.Web.Spread.StyleInfo() mystyle.BackColor = Color.Red colhdr = FpSpread1.ActiveSheetView.ColumnHeader colhdr.DefaultStyle = mystyle