|
THPDFPage.AddCircleSquareAnnotation
|
Arriba Anterior Siguiente |
|
Adds new CircleSquare annotation on the current page.
type THPDFCSAnnotationType = (csCircle, csSquare);
Sintaxis Delphi: procedure AddCircleSquareAnnotation ( Contenido: AnsiString; Rectangle: TRect; CSType: THPDFCSAnnotationType; Color: TColor = clRed );
Sintaxis C++: void __fastcall AddCircleSquareAnnotation(AnsiString Contenido, Windows::TRect &Rectangle, THPDFCSAnnotationType CSType, Graphics::TColor Color);
Descripción Utilice AddCircleSquareAnnotation para agregar una nueva anotación CircleSquare con mensaje de texto especificado ( Contenido), área rectangular (Rectangle), tipo (CSType) y color en la página actual
Value Meaning csCircle The annotation will be circle. csSquare The annotation will be square.
|