|
THPDFPage.RoundRect
|
Κορυφή Προηγούμενο Επόμενο |
|
Draws a rectangle with rounded corners on the canvas.
Delphi syntax: procedure RoundRect ( X1, Y1, X2, Y2, X3, Y3: Integer );
C++ syntax: void __fastcall RoundRect ( int X1, int Y1, int X2, int Y2, int X3, int Y3);
Περιγραφή
Χρησιμοποιήστε το RoundRect για να σχεδιάσετε rounded rectangle. Το rectangle θα έχει edges που ορίζονται από τα points (X1,Y1), (X2,Y1), (X2,Y2), (X1,Y2), αλλά οι corners θα στρογγυλευτούν για rounded appearance. Η curve των rounded corners ταιριάζει με την curvature ενός ellipse με width X3 και height Y3
To draw an ellipse instead, use Ellipse. To draw a true rectangle, use Rectangle.
Code Example
|