GraphicsPath::AddEllipse Method (Rectangle)
.NET Framework (current version)
Adds an ellipse to the current path.
Assembly: System.Drawing (in System.Drawing.dll)
The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, an OnPaint event object. The code performs the following actions:
Creates a bounding rectangle that defines an ellipse.
Creates a path and adds the ellipse to the path.
Draws the path to screen.
private: void AddEllipseExample( PaintEventArgs^ e ) { // Create a path and add an ellipse. Rectangle myEllipse = Rectangle(20,20,100,50); GraphicsPath^ myPath = gcnew GraphicsPath; myPath->AddEllipse( myEllipse ); // Draw the path to the screen. Pen^ myPen = gcnew Pen( Color::Black,2.0f ); e->Graphics->DrawPath( myPen, myPath ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: