|
THPDFPage.AddTextAnnotation
|
Arriba Anterior Siguiente |
|
Adds new Text annotation on the current page.
type THPDFTextAnnotationType = ( taComment, taKey, taNote, taHelp, taNewParagraph, taParagraph, taInsert );
Sintaxis Delphi: procedure AddTextAnnotation ( Contenido: AnsiString; Rectangle: TRect; Open: boolean; Name: THPDFTextAnnotationType; Color: TColor = clRed );
Sintaxis C++: void __fastcall AddTextAnnotation ( AnsiString Contenido, Windows::TRect &Rectangle, bool Open, THPDFTextAnnotationType Name, Graphics::TColor Color );
Descripción Utilice AddTextAnnotation para agregar una nueva anotación Text con mensaje de texto especificado ( Contenido), área rectangular (Rectangle), vista de icono (Name) y color en la página actual. Establezca Open en true para abrir la anotación o en false para cerrarla
Value Meaning taComment Comment taKey Key taNote Note taHelp Help taNewParagraph NewParagraph taParagraph Paragraph taInsert Insert
|