MESCIUS SPREAD for Windows Forms 15.0J
BackColor プロパティ (CalculatorButtonStyleInfo)
使用例 

背景色を取得または設定します。
構文
'宣言
 
Public Property BackColor As Color
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 メンバ

 

 


© MESCIUS inc. All rights reserved.