Spread Windows Forms 12.0 Product Documentation
RectangleShape Constructor()
Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread.DrawingSpace Namespace > RectangleShape Class > RectangleShape Constructor : RectangleShape Constructor()
Creates a new rectangle shape.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New RectangleShape()
public RectangleShape()
Example
This example creates a rectangle shape.
FarPoint.Win.Spread.DrawingSpace.RectangleShape rs = new FarPoint.Win.Spread.DrawingSpace.RectangleShape();
rs.BackColor = Color.Red;
rs.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth;
rs.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical;
rs.Anchor = 20;
rs.SetBounds(15, 15, 50, 50);

fpSpread1.ActiveSheet.AddShape(rs, true); 
Dim rs As New FarPoint.Win.Spread.DrawingSpace.RectangleShape()
rs.BackColor = Color.Red
rs.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth
rs.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical
rs.Anchor = 20
rs.SetBounds(15, 15, 50, 50)

FpSpread1.ActiveSheet.AddShape(rs)
See Also

Reference

RectangleShape Class
RectangleShape Members
Overload List