MESCIUS SPREAD for ASP.NET 10.0J
BackColor プロパティ (ComboBoxCellType)

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

プロパティ値

背景色を含む Color オブジェクト
次のサンプルコードは、コンボボックスの背景色を設定します。
FarPoint.Web.Spread.ComboBoxCellType cb = new FarPoint.Web.Spread.ComboBoxCellType(new string[] {
            "One",
            "Two",
            "Three"});
cb.ShowButton = true;
cb.BackColor = Drawing.Color.Coral;
FpSpread1.ActiveSheetView.Cells[0, 0].CellType = cb;
Dim cb As New FarPoint.Web.Spread.ComboBoxCellType(New String() {"One", "Two", "Three"})
cb.ShowButton = True
cb.BackColor = Drawing.Color.Coral
FpSpread1.ActiveSheetView.Cells(0, 0).CellType = cb
参照

ComboBoxCellType クラス
ComboBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.