Adds an elliptical arc to the current figure of this path.
Namespace: RSGdiPlusGraphics
Delphi |
public |
Parameters
x
Type: Single
Real number that specifies the x-coordinate of the upper-left corner of the bounding rectangle for the ellipse that contains the arc.
y
Type: Single
Real number that specifies the y-coordinate of the upper-left corner of the bounding rectangle for the ellipse that contains the arc.
width
Type: Single
Real number that specifies the width of the bounding rectangle for the ellipse that contains the arc.
height
Type: Single
Real number that specifies the height of the bounding rectangle for the ellipse that contains the arc.
StartAngle
Type: Single
Real number that specifies the clockwise angle, in degrees, between the horizontal axis of the ellipse and the starting point of the arc.
SweepAngle
Type: Single
Real number that specifies the clockwise angle, in degrees, between the starting point (startAngle) and the ending point of the arc.
Type: TRSGPPath
The function returns the current path so that you can chain together commands, e.g., aPath.MoveTo(PointF(50,50)).LineTo(PointF(100,100).AddPolygon(Polygon1).AddEllipse(RectF(10,10,200,100)); |