Spread Windows Forms 6.0 Product Documentation
CurvedArrowShape Constructor()
See Also  Example Support Options
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.DrawingSpace Namespace > CurvedArrowShape Class > CurvedArrowShape Constructor : CurvedArrowShape Constructor()


Glossary Item Box

Creates a new curved arrow shape.

Syntax

Visual Basic (Declaration) 
Public Function New()
Visual Basic (Usage)Copy Code
Dim instance As New CurvedArrowShape()
C# 
public CurvedArrowShape()

Example

This example creates a curved arrow shape.
C#Copy Code
FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape ca = new FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape();
ca.Parent = fpSpread1;
ca.BackColor = Color.Red;
ca.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth;
ca.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical;
ca.Anchor = 40;
ca.SetBounds(25, 25, 50, 50);

fpSpread1.ActiveSheet.AddShape(ca);
Visual BasicCopy Code
Dim ca As New FarPoint.Win.Spread.DrawingSpace.CurvedArrowShape
ca.Parent = FpSpread1
ca.BackColor = Color.Red
ca.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth
ca.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical
ca.Anchor = 40
ca.SetBounds(25, 25, 50, 50)

FpSpread1.ActiveSheet.AddShape(ca)

Requirements

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

See Also

© 2002-2012 ComponentOne, a division of GrapeCity. All Rights Reserved.