Table of Contents

Method AppendCircle

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

AppendCircle(PdfPoint, double)

Appends a circle with specified center coordinates and radius to the current path.

public void AppendCircle(PdfPoint center, double radius)

Parameters

center PdfPoint

The circle center.

radius double

The circle radius.

Remarks

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

Please use DrawCircle if you want to draw a circle immediately.