[]
        
(Showing Draft Content)

C1.C1Pdf.C1PdfDocument.FillEllipse

FillEllipse Method

FillEllipse(Color, float, float, float, float)

Fills the interior of an ellipse defined by a bounding rectangle specified by a coordinate pair, a width, and a height.

Declaration
public void FillEllipse(Color color, float x, float y, float width, float height)
Parameters
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.

Remarks

All coordinates are expressed in points, measured from the upper-left corner of the page.

FillEllipse(Brush, float, float, float, float)

Fills the interior of an ellipse defined by a bounding rectangle specified by a coordinate pair, a width, and a height.

Declaration
public void FillEllipse(Brush brush, float x, float y, float width, float height)
Parameters
Type Name Description
Brush brush

The object that determines 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.

Remarks

All coordinates are expressed in points, measured from the upper-left corner of the page.

FillEllipse(Color, RectangleF)

Fills the interior of an ellipse defined by a bounding rectangle specified by a rectangle structure.

Declaration
public void FillEllipse(Color color, RectangleF rc)
Parameters
Type Name Description
Color color

The color used to fill the ellipse.

RectangleF rc

The rectangle structure that specifies the bounding rectangle.

Remarks

All coordinates are expressed in points, measured from the upper-left corner of the page.

FillEllipse(Brush, RectangleF)

Fills the interior of an ellipse defined by a bounding rectangle specified by a rectangle structure.

Declaration
public void FillEllipse(Brush brush, RectangleF rc)
Parameters
Type Name Description
Brush brush

The object that determines the color used to fill the ellipse.

RectangleF rc

The rectangle structure that specifies the bounding rectangle.

Remarks

All coordinates are expressed in points, measured from the upper-left corner of the page.