|
THPDFPage.AddTextAnnotation
|
トップへ 前へ 次へ |
|
現在のページに新しいテキスト(Text)注釈を追加します。
type THPDFTextAnnotationType = ( taComment, taKey, taNote, taHelp, taNewParagraph, taParagraph, taInsert );
Delphi 構文: procedure AddTextAnnotation ( 目次: AnsiString; Rectangle: TRect; Open: boolean; 名前: THPDFTextAnnotationType; Color: TColor = clRed );
C++ 構文: void __fastcall AddTextAnnotation ( AnsiString 目次, Windows::TRect &Rectangle, bool Open, THPDFTextAnnotationType 名前, Graphics::TColor Color );
説明 AddTextAnnotation を使用して、指定されたテキストメッセージ (目次)、四角形の領域 (Rectangle)、アイコンビュー (名前)、および色を指定して、現在のページに新しいテキスト注釈を追加します。注釈を開くには Open 値を true に設定し、注釈を閉じるには Open 値を false に設定します。
Value Meaning taComment Comment taKey Key taNote Note taHelp Help taNewParagraph NewParagraph taParagraph Paragraph taInsert Insert
|