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


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

    Property Value

    A System.Drawing.Color value that indicates the background color of the DropDownCalculator.
    The default is System.Drawing.SystemColors.Control.
    Exceptions
    ExceptionDescription
    The value is not valid.
    Remarks
    You can use the BackColor property to change the background color of the control to blend into the color scheme of your forms.
    Example
    次のサンプルコードは、BackColorプロパティを設定します。
    GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType ncell1 = new GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType();
    ncell1.DropDownCalculator.BackColor = Color.Bisque;
    ncell1.DropDownCalculator.BorderStyle = BorderStyle.FixedSingle;
    fpSpread1.ActiveSheet.Cells[1, 1].CellType = ncell1;
    Dim ncell1 As New GrapeCity.Win.Spread.InputMan.CellType.GcNumberCellType()
    ncell1.DropDownCalculator.BackColor = Color.Bisque
    ncell1.DropDownCalculator.BorderStyle = BorderStyle.FixedSingle
    fpSpread1.ActiveSheet.Cells(1, 1).CellType = ncell1
    See Also