PdfCanvas.AppendEllipse Method

Appends an ellipse specified by a bounding PdfRectangle structure to the current path.

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

Syntax

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

Parameters

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

Remarks

Note that the call to this method does not place any marks on the canvas; only the painting operators (StrokePath(), CloseAndStrokePath(), FillPath(PdfFillMode), FillAndStrokePath(PdfFillMode)) do that.

Please use DrawEllipse() if you want to draw an ellipse immediately.

See Also