Spread Windows Forms 10.0 Product Documentation
PSGradient Constructor(Object)
Example 


Object from which to clone the gradient
Creates a new presentation space gradient object based on another object.
Syntax
'Declaration
 
Public Function New( _
   ByVal cloneFrom As Object _
)
'Usage
 
Dim cloneFrom As Object
 
Dim instance As New PSGradient(cloneFrom)
public PSGradient( 
   object cloneFrom
)

Parameters

cloneFrom
Object from which to clone 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.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.PSGradient g1 = new FarPoint.Win.Spread.DrawingSpace.PSGradient(g

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 = g1;
fpSpread1.ActiveSheet.AddShape(arrow);
Dim g As New FarPoint.Win.Spread.DrawingSpace.PSGradient
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 g1 As New FarPoint.Win.Spread.DrawingSpace.PSGradient(g)

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 = g1
FpSpread1.ActiveSheet.AddShape(arrow)
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

PSGradient Class
PSGradient Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.