SetBorderColor

function SetBorderColor(r: any = null, g: any = null, b: any = null, bNone: any = null): void

Description

Sets the border color to the current form.

Parameters

ranydefault: null

Red color component value.

ganydefault: null

Green color component value.

banydefault: null

Blue color component value.

bNoneanydefault: null

Defines that border color 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);
oTextForm.SetBorderColor(255, 111, 61);

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).