|
THPDFPage.AddFreeTextAnnotation
|
Κορυφή Προηγούμενο Επόμενο |
|
Adds new FreeText annotation on the current page.
type THPDFFreeTextAnnotationJust = ( ftLeftJust, ftCenter, ftRightJust );
Delphi syntax: procedure AddFreeTextAnnotation ( Contents: AnsiString; Rectangle: TRect; Quadding: THPDFFreeTextAnnotationJust; Color: TColor = clRed );
C++ syntax: void __fastcall AddFreeTextAnnotation ( AnsiString Contents, Windows::TRect &Rectangle, THPDFFreeTextAnnotationJust Quadding, Graphics::TColor Color );
Περιγραφή Χρησιμοποιήστε το AddFreeTextAnnotation για να προσθέσετε νέο FreeText annotation με καθορισμένο text message (Contents), rectangle area (Rectangle), justification (Quadding) και color στην τρέχουσα σελίδα
Value Meaning ftLeftJust Left justification. ftCenter Center justification. ftRightJust Right justification.
|