Graphics.FillEllipse Method (Brush, RectangleF)
.NET Framework 3.0
Fills the interior of an ellipse defined by a bounding rectangle specified by a RectangleF structure.
Namespace: System.Drawing
Assembly: System.Drawing (in system.drawing.dll)
Assembly: System.Drawing (in system.drawing.dll)
public void FillEllipse ( Brush brush, RectangleF rect )
public function FillEllipse ( brush : Brush, rect : RectangleF )
Not applicable.
Parameters
- brush
Brush that determines the characteristics of the fill.
- rect
RectangleF structure that represents 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 a rectangle that bounds an ellipse.
-
Fills the ellipse on the screen.
public: void FillEllipseRectangleF( PaintEventArgs^ e ) { // Create solid brush. SolidBrush^ redBrush = gcnew SolidBrush( Color::Red ); // Create rectangle for ellipse. float x = 0.0F; float y = 0.0F; float width = 200.0F; float height = 100.0F; RectangleF rect = RectangleF(x,y,width,height); // Fill ellipse on screen. e->Graphics->FillEllipse( redBrush, rect ); }
public void FillEllipseRectangleF(PaintEventArgs e)
{
// Create solid brush.
SolidBrush redBrush = new SolidBrush(Color.get_Red());
// Create rectangle for ellipse.
float x = 0;
float y = 0;
float width = 200;
float height = 100;
RectangleF rect = new RectangleF(x, y, width, height);
// Fill ellipse on screen.
e.get_Graphics().FillEllipse(redBrush, rect);
} //FillEllipseRectangleF
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: