Spread Windows Forms 10.0 Product Documentation
DonutShape Constructor()
Example 


Creates a new donut shape.
Syntax
'Declaration
 
Public Function New()
'Usage
 
Dim instance As New DonutShape()
public DonutShape()
Example
This example creates a donut shape.
FarPoint.Win.Spread.DrawingSpace.DonutShape donut = new FarPoint.Win.Spread.DrawingSpace.DonutShape();
donut.Parent = fpSpread1;
donut.BackColor = Color.Red;
donut.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth;
donut.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical;
donut.Anchor = 20;
donut.SetBounds(15, 15, 50, 50);
fpSpread1.ActiveSheet.AddShape(donut);
Dim donut As New FarPoint.Win.Spread.DrawingSpace.DonutShape
donut.Parent = FpSpread1
donut.BackColor = Color.Red
donut.CanSize = FarPoint.Win.Spread.DrawingSpace.Sizing.HeightAndWidth
donut.CanMove = FarPoint.Win.Spread.DrawingSpace.Moving.HorizontalAndVertical
donut.Anchor = 20
donut.SetBounds(15, 15, 50, 50)
FpSpread1.ActiveSheet.AddShape(donut)
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

DonutShape Class
DonutShape Members
Overload List

 

 


Copyright © GrapeCity, inc. All rights reserved.