PdfCanvas.DrawEllipse Method (PdfRectangle)

Draws an ellipse specified by a bounding PdfRectangle structure.

Namespace:  BitMiracle.Docotic.Pdf
Assembly:  BitMiracle.Docotic.Pdf (in BitMiracle.Docotic.Pdf.dll)

Syntax

C#
public void DrawEllipse(
	PdfRectangle boundingRectangle
)
VB
Public Sub DrawEllipse ( 
	boundingRectangle As PdfRectangle
)

Parameters

boundingRectangle
Type: BitMiracle.Docotic.Pdf.PdfRectangle
PdfRectangle structure that defines the boundaries of the ellipse.

Remarks

This methods draws a non-filled ellipse.

Please use AppendEllipse(PdfRectangle) if you want to append an ellipse to the current path.

See Also