PowerTools SPREAD for ASP.NET 8.0J
BackColor プロパティ (Cell)

セルの背景色を取得または設定します。
構文
'Declaration
 
Public Property BackColor As Color
public Color BackColor {get; set;}

プロパティ値

セルの背景色を含むColorオブジェクト
解説

このプロパティの設定は、StyleNameプロパティを使用して、セルに名前付きスタイルが割り当てられ、その名前付きスタイルで背景色を設定している場合はオーバーライドされます。

セルのテキスト色を指定するには、ForeColorプロパティを設定します。

この例では、Cellオブジェクトを作成し、BackColorとForeColorプロパティを設定します。次に、CheckBoxセル型として定義し、その周囲に境界線を設定します。ユーザーがセルを編集してこのCheckBoxをONにした場合、セルのテキストが変更されます。
FarPoint.Web.Spread.Cell mycell;
mycell = FpSpread1.Cells[0, 0];
mycell.BackColor = Color.RoyalBlue;
mycell.ForeColor = Color.White;
mycell.Border = new FarPoint.Web.Spread.Border(System.Web.UI.WebControls.BorderStyle.Double, Color.DarkBlue, 2);
mycell.CellType = new FarPoint.Web.Spread.CheckBoxCellType();
Dim mycell As FarPoint.Web.Spread.Cell
mycell = FpSpread1.Cells(0, 0)
mycell.BackColor = Color.RoyalBlue
mycell.ForeColor = Color.White
mycell.Border = New FarPoint.Web.Spread.Border(System.Web.UI.WebControls.BorderStyle.Double, Color.DarkBlue, 2)
mycell.CellType = New FarPoint.Web.Spread.CheckBoxCellType()
参照

Cell クラス
Cell メンバ
ForeColor プロパティ
StyleName プロパティ
NamedStyle クラス

 

 


© 2003-2015, GrapeCity inc. All rights reserved.