|
THPDFPage.AddCircleSquareAnnotation
|
トップへ 前へ 次へ |
|
現在のページに新しい円または四角形(CircleSquare)の注釈を追加します。
type THPDFCSAnnotationType = (csCircle, csSquare);
Delphi 構文: procedure AddCircleSquareAnnotation ( 目次: AnsiString; Rectangle: TRect; CSType: THPDFCSAnnotationType; Color: TColor = clRed );
C++ 構文: void __fastcall AddCircleSquareAnnotation(AnsiString 目次, Windows::TRect &Rectangle, THPDFCSAnnotationType CSType, Graphics::TColor Color);
説明 AddCircleSquareAnnotation を使用して、指定されたテキストメッセージ (目次)、四角形の領域 (Rectangle)、タイプ (CSType)、および色を指定して、現在のページに新しい円または四角形の注釈を追加します。
Value Meaning csCircle The annotation will be circle. csSquare The annotation will be square.
|