Adds an ellipse to this path.
Namespace: RSGdiPlusGraphics
Delphi |
public |
Parameters
ARect
Type: TRectF
rectangle that bounds the ellipse.
Type: TRSGPPath
A path object stores an ellipse as a sequence of four connected Bézier splines. The path object does not store the upper-left corner, width, and height of the ellipse's bounding rectangle. 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)); |