THPDFPage.Circle Method

 

THPDFPage.Circle

THPDFPage

 

Topo  Anterior  Seguinte

Draws the circle defined by a bounding rectangle on the canvas.

 

Delphi syntax:

procedure Circle( X, Y, Radius: Single );

 

C++ syntax:

void __fastcall Circle( float X, float Y, float Radius );

 

Descrição

 

Chame Circle para desenhar um círculo. Especifique as coordenadas do centro ( X, Y) e o Radius

 

Code Example

HPDF.CurrentPage.Circle( 100, 100, 75 );   // Center on 100, 100, Radius 75
HPDF.CurrentPage.Stroke;                    // Draw circle outline