GraphicsDrawEllipse Method
Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates, a height, and a width.
Namespace: SMath.DrawingAssembly: SMath.Drawing (in SMath.Drawing.dll) Version: 1.4.0.0
public void DrawEllipse(
ColorPen pen,
float x,
float y,
float width,
float height
)
Public Sub DrawEllipse (
pen As ColorPen,
x As Single,
y As Single,
width As Single,
height As Single
)
public:
virtual void DrawEllipse(
ColorPen^ pen,
float x,
float y,
float width,
float height
) sealed
abstract DrawEllipse :
pen : ColorPen *
x : float32 *
y : float32 *
width : float32 *
height : float32 -> unit
override DrawEllipse :
pen : ColorPen *
x : float32 *
y : float32 *
width : float32 *
height : float32 -> unit
- pen ColorPen
- ColorPen that determines the color, width, and style of the ellipse.
- x Single
- The x-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse.
- y Single
- The y-coordinate of the upper-left corner of the bounding rectangle that defines the ellipse.
- width Single
- Width of the bounding rectangle that defines the ellipse.
- height Single
- Height of the bounding rectangle that defines the ellipse.
IGraphicsDrawEllipse(ColorPen, Single, Single, Single, Single)