Search
IGraphicsPath.AddEllipse Method (Double, Double, Double, Double)
See Also
 





Adds an ellipse to the current path.

Namespace: MindFusion.Drawing
Assembly: MindFusion.Common

 Syntax

C#  Copy Code

void AddEllipse (
    double x,
    double y,
    double width,
    double height
)

Visual Basic  Copy Code

Sub AddEllipse( _
    x As Double, _
    y As Double, _
    width As Double, _
    height As Double _
)

 Parameters

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