Search
GdiGraphics.DrawEllipse Method (Pen, Single, Single, Single, Single)
See Also
 





Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates, a height, and a width.

Namespace: MindFusion.Drawing
Package: MindFusion.Common

 Syntax

C#  Copy Code

public virtual void DrawEllipse (
    Pen pen,
    float x,
    float y,
    float width,
    float height
)

Visual Basic  Copy Code

Public Overridable Sub DrawEllipse( _
    pen As Pen, _
    x As Single, _
    y As Single, _
    width As Single, _
    height As Single _
)

 Parameters

pen
A .NET Pen object that determines the color, width, and style of the ellipse.
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
The width of the bounding rectangle that defines the ellipse.
height
The height of the bounding rectangle that defines the ellipse.

 See Also