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


Glossary Item Box

Creates a new rounded rectangle shape.

Syntax

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

Example

This example creates a rounded rectangle and places it in the container.
C#Copy Code
FarPoint.Win.Spread.DrawingSpace.RoundedRectangleShape rrs = new FarPoint.Win.Spread.DrawingSpace.RoundedRectangleShape();
rrs.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth;
rrs.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical;
rrs.BackColor = Color.Yellow;
rrs.Anchor = 20;
rrs.SetBounds(20, 20, 60, 60);
fpSpread1.ActiveSheet.AddShape(rrs);
Visual BasicCopy Code
Dim rrs As New FarPoint.Win.Spread.DrawingSpace.RoundedRectangleShape()
rrs.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth
rrs.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical
rrs.BackColor = Color.Yellow
rrs.Anchor = 20
rrs.Parent = FpSpread1
rrs.SetBounds(20, 20, 60, 60)
FpSpread1.ActiveSheet.AddShape(rrs)

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.