跳到主要内容

AddElement

使用在文档内容中的位置添加段落、表格或块级内容控件。

语法

expression.AddElement(nPos, oElement);

expression - 表示 ApiDocumentContent 类的变量。

参数

名称必需/可选数据类型默认值描述
nPos必需number将添加当前元素的位置。
oElement必需DocumentElement将在当前位置添加的文档元素。

返回值

boolean

示例

在 PDF 中向形状插入文本块。

// How do I add content inside a drawn shape in a PDF?

// Create a shape, fill it with text, and place it on a page in a PDF.

const doc = Api.GetDocument();
const page = doc.GetPage(0);

const fill = Api.CreateSolidFill(Api.RGB(255, 111, 61));
const stroke = Api.CreateStroke(0, Api.CreateNoFill());
const shape = Api.CreateShape("flowChartMagneticTape", 150 * 36000, 65 * 36000, fill, stroke);
shape.SetPosition(608400, 1267200);

const docContent = shape.GetContent();
docContent.RemoveAllElements();
const paragraph = Api.CreateParagraph();
paragraph.AddText("We removed all elements from the shape and added a new paragraph inside it.");
docContent.AddElement(paragraph);
docContent.Push(paragraph);
page.AddObject(shape);