Spread Windows Forms 12.0 Product Documentation
Style Property (PSGradient)
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.DrawingSpace Namespace > PSGradient Class : Style Property
Gets or sets the gradient style for the object.
Syntax
'Declaration
 
Public Overridable Property Style As GradientStyle
'Usage
 
Dim instance As PSGradient
Dim value As GradientStyle
 
instance.Style = value
 
value = instance.Style
public virtual GradientStyle Style {get; set;}

Property Value

GradientStyle setting that determines the style of the gradient
Example
This example creates a gradient and applies it to the shape.
FarPoint.Win.Spread.DrawingSpace.PSGradient g = new FarPoint.Win.Spread.DrawingSpace.PSGradient();
g.Name = "custom";
g.Style = FarPoint.Win.Spread.DrawingSpace.GradientStyle.RadialIntoCenter;
g.Sections[0].Color = Color.Navy;
g.Sections[0].AlphaBlend = 128;
g.Sections[1].Color = Color.Magenta;
g.Sections[1].AlphaBlend = 255

FarPoint.Win.Spread.DrawingSpace.ArrowShape arrow = new FarPoint.Win.Spread.DrawingSpace.ArrowShape(fpSpread1);
arrow.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth;
arrow.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical;
arrow.Anchor = 20;
arrow.SetBounds(15, 15, 50, 50);
arrow.Gradient = g;
fpSpread1.ActiveSheet.AddShape(arrow);
Dim g As New FarPoint.Win.Spread.DrawingSpace.PSGradient
g.Name = "custom"
g.Style = FarPoint.Win.Spread.DrawingSpace.GradientStyle.RadialIntoCenter
g.Sections(0).Color = Color.Navy
g.Sections(0).AlphaBlend = 128
g.Sections(1).Color = Color.Magenta
g.Sections(1).AlphaBlend = 255

Dim arrow As New FarPoint.Win.Spread.DrawingSpace.ArrowShape(FpSpread1)
arrow.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth
arrow.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical
arrow.Anchor = 20
arrow.SetBounds(15, 15, 50, 50)
arrow.Gradient = g
FpSpread1.ActiveSheet.AddShape(arrow)
See Also

Reference

PSGradient Class
PSGradient Members