SetBackgroundColor
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 oTextForm = 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});
var oParagraph = oDocument.GetElement(0);
oParagraph.AddElement(oTextForm);
oTextForm.SetBackgroundColor(255, 255, 0);
builder.SaveFile("docx", "SetBackgroundColor.docx");
builder.CloseFile();
Resulting document