Sets the background color to the current form.
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. |
builder.CreateFile("pdf"); var oDocument = Api.GetDocument(); var oDateForm = Api.CreateDateForm({"key": "Nowadays", "tip": "Enter current date", "required": true, "placeholder": "Date", "format": "mm.dd.yyyy", "lang": "en-US"}); var oParagraph = oDocument.GetElement(0); oParagraph.AddElement(oDateForm); oDateForm.SetBackgroundColor(255, 111, 61); builder.SaveFile("pdf", "SetBackgroundColor.pdf"); builder.CloseFile();