跳到主要内容

SetFormKey

为当前表单设置键。

语法

expression.SetFormKey(sKey);

expression - 表示 ApiFormBase 类的变量。

参数

名称必需/可选数据类型默认值描述
sKey必需string表单键。

返回值

boolean

示例

此示例为表单设置键。

// Change the key of the text form.

// How to specify the text form key.

let doc = Api.GetDocument();
let textForm = Api.CreateTextForm({"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.SetFormKey("Personal information");
let key = textForm.GetFormKey();
paragraph = Api.CreateParagraph();
paragraph.AddText("Form key: " + key);
doc.Push(paragraph);