GrapeCity SPREAD for Windows Forms 11.0J
BackColor プロパティ (CalculatorButtonStyleInfo)


背景色を取得または設定します。
構文
'Declaration
 
Public Property BackColor As Color
'使用法
 
Dim instance As CalculatorButtonStyleInfo
Dim value As Color
 
instance.BackColor = value
 
value = instance.BackColor
public Color BackColor {get; set;}

プロパティ値

背景の描画に使用されるSystem.Drawing.Color
解説
ドロップダウン電卓のボタンの背景色を表示するには、FlatStyleプロパティをFlatまたはPopupに設定する必要があります。
次のサンプルコードは、ドロップダウン電卓の色を設定します。
GrapeCity.Win.Spread.InputMan.CellType.CalculatorButtonStyleInfo cbs = new GrapeCity.Win.Spread.InputMan.CellType.CalculatorButtonStyleInfo();
cbs.BackColor = Color.Yellow;
cbs.ForeColor = Color.Magenta;
cbs.TextEffect = GrapeCity.Win.Spread.InputMan.CellType.TextEffect.Inset;

GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType ncell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType();
ncell1.DropDownCalculator.FlatStyle = FlatStyle.Popup;
ncell1.DropDownCalculator.Font = new System.Drawing.Font("Comic Sans MS", 10);
ncell1.DropDownCalculator.MathButtons = cbs;
ncell1.DropDownCalculator.MemoryButtons = cbs;
fpSpread1.ActiveSheet.Cells[1, 1].CellType = ncell1;
fpSpread1.ActiveSheet.Cells[1, 1].Value = 12.31;
Dim cbs As New GrapeCity.Win.Spread.InputMan.CellType.CalculatorButtonStyleInfo()
cbs.BackColor = Color.Yellow
cbs.ForeColor = Color.Magenta
cbs.TextEffect = GrapeCity.Win.Spread.InputMan.CellType.TextEffect.Inset

Dim ncell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType()
ncell1.DropDownCalculator.FlatStyle = FlatStyle.Popup
ncell1.DropDownCalculator.Font = New System.Drawing.Font("Comic Sans MS", 10)
ncell1.DropDownCalculator.MathButtons = cbs
ncell1.DropDownCalculator.MemoryButtons = cbs
FpSpread1.ActiveSheet.Cells(1, 1).CellType = ncell1
FpSpread1.ActiveSheet.Cells(1, 1).Value = 12.31
参照

CalculatorButtonStyleInfo クラス
CalculatorButtonStyleInfo メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.