CreatePopup

PdfContentEditor.CreatePopup method

在 PDF 文档中创建弹出注释。

public void CreatePopup(Rectangle rect, string contents, bool open, int page)
范围类型描述
rectRectangle定义页面上注释位置的注释矩形。
contentsString注释的内容。
openBoolean一个标志,指定弹出注释是否最初应打开显示。
pageInt32将在其中创建注释的原始页数。

例子

PdfContentEditor editor = new PdfContentEditor();
editor.BindPdf("example.pdf");
editor.CreatePopup(new System.Drawing.Rectangle(0, 0, 100, 100), "Welcome to Aspose", true, 1);
editor.Save("example_out.pdf");

也可以看看