跳到主要内容

SetBackgroundColor

设置当前表单的背景颜色。

语法

expression.SetBackgroundColor(color);

expression - 表示 ApiCheckBoxForm 类的变量。

参数

名称必需/可选数据类型默认值描述
color可选ApiColor背景颜色。

返回值

boolean

示例

此示例为表单设置背景颜色。

// Applies an RGB background color to the text form element.

// How to change background color of the text form.

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.SetBackgroundColor(Api.HexColor('#FF6F3D'));