PDF .NET Library Documentation - PDF Technologies, Inc.
This procedure creates a circular path centered at (x, y) with radius "r" in the counter-clock-wise direction.

Namespace:  PDFTech
Assembly:  PDFTechLib (in PDFTechLib.dll) Version: 1.0.0.0 (1.7.9.0)

Syntax

C#
public void DrawCircle(
	PDFBrush brush,
	PDFPen pen,
	double X,
	double Y,
	double R
)
Visual Basic (Declaration)
Public Sub DrawCircle ( _
	brush As PDFBrush, _
	pen As PDFPen, _
	X As Double, _
	Y As Double, _
	R As Double _
)
Visual C++
public:
void DrawCircle(
	PDFBrush^ brush, 
	PDFPen^ pen, 
	double X, 
	double Y, 
	double R
)

Parameters

brush
Type: PDFTech..::.PDFBrush
Brush that determines the characteristics of the fill.
pen
Type: PDFTech..::.PDFPen
Pen that determines the color and width of the circle.
X
Type: System..::.Double
Location x
Y
Type: System..::.Double
Location y
R
Type: System..::.Double
Radius value

Remarks

If you need a circle drawn in the clock-wise direction, please use Arc(x, y, x+r,y+r, 360.0);

See Also