Spread Windows Forms 12.0 Product Documentation
NormalBackgroundColor Property (EnhancedCornerRenderer)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.CellType Namespace > EnhancedCornerRenderer Class : NormalBackgroundColor Property
Gets or sets the color of the normal background.
Syntax
'Declaration
 
Public Property NormalBackgroundColor As Color
'Usage
 
Dim instance As EnhancedCornerRenderer
Dim value As Color
 
instance.NormalBackgroundColor = value
 
value = instance.NormalBackgroundColor
public Color NormalBackgroundColor {get; set;}

Property Value

Color of the background for the cell
Example
This example customizes the sheet corner.
FarPoint.Win.Spread.CellType.EnhancedCornerRenderer rend = new FarPoint.Win.Spread.CellType.EnhancedCornerRenderer();
rend.ActiveBackgroundColor = Color.Bisque;
rend.GridLineColor = Color.Tomato;
rend.NormalBackgroundColor = Color.Maroon;
fpSpread1.ActiveSheet.SheetCorner.DefaultStyle.Renderer = rend;
fpSpread1.ActiveSheet.AllowTableCorner = true;
Dim rend As New FarPoint.Win.Spread.CellType.EnhancedCornerRenderer
rend.ActiveBackgroundColor = Color.Bisque
rend.GridLineColor = Color.Tomato
rend.NormalBackgroundColor = Color.Maroon
FpSpread1.ActiveSheet.SheetCorner.DefaultStyle.Renderer = rend
FpSpread1.ActiveSheet.AllowTableCorner = True
See Also

Reference

EnhancedCornerRenderer Class
EnhancedCornerRenderer Members