Spread Windows Forms 10.0 Product Documentation
GradientHeaderRenderer Constructor(Color,Color,Color,Color,LinearGradientMode)
Example 


Color at the top of the gradient
Color at the bottom of the gradient
Color at the top when the header cell is active
Color at the bottom when the header cell is active
Mode of the linear gradient
Creates a new renderer for a gradient header with color and mode specified.
Syntax
'Declaration
 
Public Function New( _
   ByVal topColor As Color, _
   ByVal bottomColor As Color, _
   ByVal activeTopColor As Color, _
   ByVal activeBottomColor As Color, _
   ByVal mode As LinearGradientMode _
)
'Usage
 
Dim topColor As Color
Dim bottomColor As Color
Dim activeTopColor As Color
Dim activeBottomColor As Color
Dim mode As LinearGradientMode
 
Dim instance As New GradientHeaderRenderer(topColor, bottomColor, activeTopColor, activeBottomColor, mode)
public GradientHeaderRenderer( 
   Color topColor,
   Color bottomColor,
   Color activeTopColor,
   Color activeBottomColor,
   LinearGradientMode mode
)

Parameters

topColor
Color at the top of the gradient
bottomColor
Color at the bottom of the gradient
activeTopColor
Color at the top when the header cell is active
activeBottomColor
Color at the bottom when the header cell is active
mode
Mode of the linear gradient
Example
FarPoint.Win.Spread.CellType.GradientHeaderRenderer gr = new FarPoint.Win.Spread.CellType.GradientHeaderRenderer(Color.Yellow,Color.Orange, Color.YellowGreen, Color.Bisque,Drawing2D.LinearGradientMode.ForwardDiagonal);
fpSpread1.ActiveSheet.ColumnHeader.Rows[0].Renderer = gr; 
Dim gr As New FarPoint.Win.Spread.CellType.GradientHeaderRenderer(Color.Yellow, Color.Orange, Color.YellowGreen, Color.Bisque, Drawing2D.LinearGradientMode.ForwardDiagonal)
FpSpread1.ActiveSheet.ColumnHeader.Rows(0).Renderer = gr
Requirements

Target Platforms: Windows 2000 Professional (SP4), Windows 2000 Server, Windows 2003 Server (SP1), Windows Server 2012 R2, Windows 2008, Windows XP (SP2), Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10

See Also

Reference

GradientHeaderRenderer Class
GradientHeaderRenderer Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.