MESCIUS SPREAD for ASP.NET 10.0J
ForeColor プロパティ (Cell)

セルのテキストの色(前景色)を取得または設定します。
構文
'Declaration
 
Public Property ForeColor As Color
public Color ForeColor {get; set;}

プロパティ値

このセルのテキスト色を含むColorオブジェクト
解説

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

セルの背景色を指定するには、BackColorプロパティを設定します。

この例では、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 メンバ
BackColor プロパティ
StyleName プロパティ
NamedStyle クラス

 

 


© MESCIUS inc. All rights reserved.