跳到主要内容

SetText

设置当前文本字段的文本。

语法

expression.SetText(text);

expression - 表示 ApiTextForm 类的变量。

参数

名称必需/可选数据类型默认值描述
text必需string将设置到当前文本字段的文本。

返回值

boolean

示例

将文本放入文档中的文本表单字段。

// How do I pre-fill a text form with specific content in a document?

// Populate a text form with a default value so the field is not empty in a document.

let doc = Api.GetDocument();
let textForm = Api.CreateTextForm({"key": "Personal information", "tip": "Enter your first name", "required": true, "placeholder": "First name", "comb": true, "maxCharacters": 10, "cellWidth": 3, "multiLine": false, "autoFit": false});
let paragraph = doc.GetElement(0);
paragraph.AddElement(textForm);
textForm.SetText("John Smith");