Spread Windows Forms 12.0 Product Documentation
BackColor Property (DropDownCalculatorInfo)
Example 


GrapeCity.Win.PluginInputMan Assembly > GrapeCity.Win.Spread.InputMan.CellType Namespace > DropDownCalculatorInfo Class : BackColor Property
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
This example sets the BackColor property.
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

Reference

DropDownCalculatorInfo Class
DropDownCalculatorInfo Members