跳到主要内容

SetBackgroundColor

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

继承自 ApiFormBase.SetBackgroundColor

示例

在文档中为表单字段应用背景颜色。

// How do I fill a form field with a specific background color in a document?

// Color the background of a form field to make it visually distinct from surrounding text 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.SetBackgroundColor(Api.HexColor('#FF6F3D'));