SetFormsHighlight
function SetFormsHighlight(r: byte = null, g: byte = null, b: byte = null, bNone: boolean = false): void
Description
Sets the highlight to the forms in the document.
Parameters
Red color component value.
Green color component value.
Blue color component value.
- bNone
boolean
false Defines that highlight will not be set.
Returns
void
Try It
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);
oDocument.SetFormsHighlight(255, 111, 61);