|
THPDFPage.AddCircleSquareAnnotation
|
Haut Précédent Suivant |
|
Adds new CircleSquare annotation on the current page.
type THPDFCSAnnotationType = (csCircle, csSquare);
Syntaxe Delphi : procedure AddCircleSquareAnnotation ( Contents: AnsiString; Rectangle: TRect; CSType: THPDFCSAnnotationType; Color: TColor = clRed );
Syntaxe C++ : void __fastcall AddCircleSquareAnnotation(AnsiString Contents, Windows::TRect &Rectangle, THPDFCSAnnotationType CSType, Graphics::TColor Color);
Description Utilisez AddCircleSquareAnnotation pour ajouter une nouvelle annotation CircleSquare avec le message texte spécifié ( Contents), la zone rectangulaire ( Rectangle ), le type ( CSType ) et la couleur sur la page courante
Value Meaning csCircle The annotation will be circle. csSquare The annotation will be square.
|