Method DrawCircle
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
DrawCircle(PdfPoint, double)
Draws a circle with specified center coordinates and radius.
public void DrawCircle(PdfPoint center, double radius)
Parameters
Remarks
This methods draws a non-filled circle.
Please use AppendCircle
if you want to append a circle to the current path.
DrawCircle(PdfPoint, double, PdfDrawMode)
Draws a circle with specified center coordinates and radius.
public void DrawCircle(PdfPoint center, double radius, PdfDrawMode mode)
Parameters
center
PdfPointThe circle center.
radius
doubleThe circle radius.
mode
PdfDrawModeThe drawing mode.
Remarks
Please use AppendCircle if you want to append a circle to the current path.