CreateSquareCircle

PdfContentEditor.CreateSquareCircle method

创建方圆注释。

public void CreateSquareCircle(Rectangle rect, string contents, Color clr, bool square, int page, 
    int borderWidth)
范围类型描述
rectRectangle定义页面上注释位置的注释矩形。
contentsString注释的内容。
clrColor正方形或圆形的颜色。
squareBoolean真(方形),假(圆形)。
pageInt32将在其中创建注释的原始页数。
borderWidthInt32正方形或圆形的边框宽度。

例子

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.CreateSquareCircle(new System.Drawing.Rectangle(0, 0, 100, 100),
    "Welcome to Aspose", System.Drawing.Color.Red, false, 1, 5);
editor.Save("example_out.pdf");

也可以看看