[]
Fills the interior of an ellipse defined by a bounding rectangle specified by a coordinate pair, a width, and a height.
public void FillEllipse(Color color, float x, float y, float width, float height)
Type | Name | Description |
---|---|---|
Color | color | The color used to fill the ellipse. |
float | x | x-coordinate of the upper-left corner of the bounding rectangle. |
float | y | x-coordinate of the upper-left corner of the bounding rectangle. |
float | width | Width of the bounding rectangle. |
float | height | Height of the bounding rectangle. |
All coordinates are expressed in points, measured from the upper-left corner of the page.
Fills the interior of an ellipse defined by a bounding rectangle specified by a rectangle structure.
public void FillEllipse(Color color, RectangleF rc)
Type | Name | Description |
---|---|---|
Color | color | The color used to fill the ellipse. |
RectangleF | rc | The rectangle structure that specifies the bounding rectangle. |
All coordinates are expressed in points, measured from the upper-left corner of the page.