SetColor
function SetColor(r: byte = null, g: byte = null, b: byte = null, isAuto: boolean = false): ApiRange | "null"
Description
Sets the text color to the current text Range in the RGB format.
Parameters
Red color component value.
Green color component value.
Blue color component value.
- isAuto
boolean
false If this parameter is set to "true", then r,g,b parameters will be ignored.
Returns
ApiRange | "null"
Try It
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("ONLYOFFICE Document Builder");
var oRange = oDocument.GetRange(0, 24);
oRange.SetColor(255, 111, 61);