|
使用 AddCircleSquareAnnotation 在目前頁面加入新的 CircleSquare annotation,並指定 text message(Contents)、rectangle area(Rectangle)、type(CSType)與 color
|
返回頂部 上一頁 下一頁 |
|
Adds new CircleSquare annotation on the current page.
type THPDFCSAnnotationType = (csCircle, csSquare);
Delphi 語法: procedure AddCircleSquareAnnotation ( Contents: AnsiString; Rectangle: TRect; CSType: THPDFCSAnnotationType; Color: TColor = clRed );
C++ 語法: void __fastcall AddCircleSquareAnnotation(AnsiString Contents, Windows::TRect &Rectangle, THPDFCSAnnotationType CSType, Graphics::TColor Color);
說明 使用 AddCircleSquareAnnotation 在目前頁面加入新的 CircleSquare annotation,並指定 text message(Contents)、rectangle area(Rectangle)、type(CSType)與 color
數值意義 csCircle The annotation will be circle. csSquare The annotation will be square.
|