SetColor

function SetColor(r: any = null, g: any = null, b: any = null, isAuto: any = false): void

Description

Sets the text color to the current text run in the RGB format.

Parameters

ranydefault: null

Red color component value.

ganydefault: null

Green color component value.

banydefault: null

Blue color component value.

isAutoanydefault: false

If this parameter is set to "true", then r,g,b parameters will be ignored.

Returns

void

Overloads By

SetColor(r, g, b, isAuto): ApiTextPr

Sets the text color for the current text run in the RGB format.

Try It

var oDocument = Api.GetDocument();
var oTextPr = oDocument.GetDefaultTextPr();
oTextPr.SetColor(255, 111, 61, false);
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("A sample text with the color set to orange using the text properties.");

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).