THPDFPage.Circle Method

 

THPDFPage.Circle

THPDFPage

 

Κορυφή  Προηγούμενο  Επόμενο

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 );

 

Περιγραφή

 

Καλέστε το Circle για να σχεδιάσετε circle. Καθορίστε center coordinates (X, Y) και Radius

 

Code Example

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