Creates a new rounded rectangle shape.
Syntax
Visual Basic (Declaration) | |
---|
Public Function New() |
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 Basic | Copy 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