Graphics.FillEllipse Method (Brush, Rectangle)
.NET Framework 3.0
Fills the interior of an ellipse defined by a bounding rectangle specified by a Rectangle structure.
Namespace: System.Drawing
Assembly: System.Drawing (in system.drawing.dll)
Assembly: System.Drawing (in system.drawing.dll)
The following code example is designed for use with Windows Forms, and it requires PaintEventArgse, which is a parameter of the Paint event handler. The code performs the following actions:
-
Creates a solid red brush.
-
Creates a rectangle that bounds an ellipse.
-
Fills the ellipse on the screen.
public: void FillEllipseRectangle( PaintEventArgs^ e ) { // Create solid brush. SolidBrush^ redBrush = gcnew SolidBrush( Color::Red ); // Create rectangle for ellipse. int x = 0; int y = 0; int width = 200; int height = 100; Rectangle rect = Rectangle(x,y,width,height); // Fill ellipse on screen. e->Graphics->FillEllipse( redBrush, rect ); }
public void FillEllipseRectangle(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.get_Red());
// Create rectangle for ellipse.
int x = 0;
int y = 0;
int width = 200;
int height = 100;
Rectangle rect = new Rectangle(x, y, width, height);
// Fill ellipse on screen.
e.get_Graphics().FillEllipse(redBrush, rect);
} //FillEllipseRectangle
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: