Spread Windows Forms 17
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / CalculatorButtonStyleInfo Class / BackColor Property
Example


In This Topic
    BackColor Property (CalculatorButtonStyleInfo)
    In This Topic
    Gets or sets the background color.
    Syntax
    'Declaration
     
    
    Public Property BackColor As Color
    'Usage
     
    
    Dim instance As CalculatorButtonStyleInfo
    Dim value As Color
     
    instance.BackColor = value
     
    value = instance.BackColor
    public Color BackColor {get; set;}

    Property Value

    The System.Drawing.Color used to draw the background.
    Remarks
    ドロップダウン電卓のボタンの背景色を表示するには、FlatStyleプロパティをFlatまたはPopupに設定する必要があります。
    Example
    次のサンプルコードは、ドロップダウン電卓の色を設定します。
    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
    See Also