Visual Basic (Declaration) | |
---|---|
Public Function New( _ ByVal color As Color, _ ByVal amount As Integer, _ ByVal alphaBlend As Integer _ ) |
Visual Basic (Usage) | ![]() |
---|---|
Dim color As Color Dim amount As Integer Dim alphaBlend As Integer Dim instance As New GradientSection(color, amount, alphaBlend) |
Parameters
- color
- Color
- amount
- Amount of the gradient
- alphaBlend
- Amount of alpha-blending (transparency)
This example sets the gradient for the shape on the sheet.
C# | ![]() |
---|---|
FarPoint.Win.Spread.DrawingSpace.GradientSection grd = new FarPoint.Win.Spread.DrawingSpace.GradientSection(Color.Empty, 50, 255); 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); |
Visual Basic | ![]() |
---|---|
Dim grd As New FarPoint.Win.Spread.DrawingSpace.GradientSection(Color.Empty, 50, 255) 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) |
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2