SetBackgroundColor

SetBackgroundColor(r, g, b, bNone) → { boolean }

Sets the background color to the current form.

Parameters:

Name Type Description
r byte

Red color component value.

g byte

Green color component value.

b byte

Blue color component value.

bNone boolean

Defines that background color will not be set.

Returns:

Type
boolean

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oCheckBoxForm = Api.CreateCheckBoxForm({"key": "Marital status", "tip": "Specify your marital status", "required": true, "placeholder": "Marital status", "radio": true});
var oParagraph = oDocument.GetElement(0);
oParagraph.AddElement(oCheckBoxForm);
oParagraph.AddText(" Married");
oCheckBoxForm.SetBackgroundColor(255, 111, 61);
oParagraph.AddLineBreak();
oCheckBoxForm = Api.CreateCheckBoxForm({"key": "Marital status", "tip": "Specify your marital status", "required": true, "placeholder": "Marital status", "radio": true});
oParagraph.AddElement(oCheckBoxForm);
oParagraph.AddText(" Single");
oCheckBoxForm.SetBackgroundColor(255, 111, 61);
builder.SaveFile("docx", "SetBackgroundColor.docx");
builder.CloseFile();

Resulting document