Spread Windows Forms 12.0 Product Documentation
GradientSection Constructor(Color)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.DrawingSpace Namespace > GradientSection Class > GradientSection Constructor : GradientSection Constructor(Color)
Color
Creates a new color gradient section with default settings.
Syntax
'Declaration
 
Public Function New( _
   ByVal color As Color _
)
'Usage
 
Dim color As Color
 
Dim instance As New GradientSection(color)
public GradientSection( 
   Color color
)

Parameters

color
Color
Example
This example sets the gradient for the shape on the sheet.
FarPoint.Win.Spread.DrawingSpace.GradientSection grd = new FarPoint.Win.Spread.DrawingSpace.GradientSection(Color.Empty);
grd.AlphaBlend = 255;
grd.Amount = 50;
grd.Color = Color.Red; 

FarPoint.Win.Spread.DrawingSpace.RectangleShape rs = new FarPoint.Win.Spread.DrawingSpace.RectangleShape();
rs.Name = "GradientRect";

rs.Gradient.Style = FarPoint.Win.Spread.DrawingSpace.GradientStyle.RadialFromCenter;
rs.Gradient.Sections[0] = grd;

fpSpread1.ActiveSheet.AddShape(rs);
Dim grd As New FarPoint.Win.Spread.DrawingSpace.GradientSection(Color.Empty)
grd.AlphaBlend = 255
grd.Amount = 50
grd.Color = Color.Red

Dim rs As New FarPoint.Win.Spread.DrawingSpace.RectangleShape
rs.Name = "GradientRect"

rs.Gradient.Style = FarPoint.Win.Spread.DrawingSpace.GradientStyle.RadialFromCenter
rs.Gradient.Sections(0) = grd

FpSpread1.ActiveSheet.AddShape(rs)
See Also

Reference

GradientSection Class
GradientSection Members
Overload List