Graphics.FillEllipse Method (Brush, Int32, Int32, Int32, Int32)
Assembly: System.Drawing (in system.drawing.dll)
public void FillEllipse ( Brush brush, int x, int y, int width, int height )
public function FillEllipse ( brush : Brush, x : int, y : int, width : int, height : int )
Not applicable.
Parameters
- brush
Brush that determines the characteristics of the fill.
- x
The x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse.
- y
The y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse.
- width
Width of the bounding rectangle that defines the ellipse.
- height
Height of the bounding rectangle that defines the ellipse.
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 the location and size of a rectangle that bounds an ellipse.
-
Fills the ellipse on the screen.
public: void FillEllipseInt( PaintEventArgs^ e ) { // Create solid brush. SolidBrush^ redBrush = gcnew SolidBrush( Color::Red ); // Create location and size of ellipse. int x = 0; int y = 0; int width = 200; int height = 100; // Fill ellipse on screen. e->Graphics->FillEllipse( redBrush, x, y, width, height ); }
public void FillEllipseInt(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.get_Red());
// Create location and size of ellipse.
int x = 0;
int y = 0;
int width = 200;
int height = 100;
// Fill ellipse on screen.
e.get_Graphics().FillEllipse(redBrush, x, y, width, height);
} //FillEllipseInt
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.