Table of Contents

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

center PdfPoint

The circle center.

radius double

The circle radius.

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 PdfPoint

The circle center.

radius double

The circle radius.

mode PdfDrawMode

The drawing mode.

Remarks

Please use AppendCircle if you want to append a circle to the current path.