SetColor

function SetColor(r: byte = null, g: byte = null, b: byte = null, isAuto: boolean = false): ApiTextPr

Description

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

Parameters

rbytedefault: null

Red color component value.

gbytedefault: null

Green color component value.

bbytedefault: null

Blue color component value.

isAutobooleandefault: false

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

Returns

ApiTextPr

Overloads

SetColor(r, g, b, isAuto)

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

Try It

var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oRun = Api.CreateRun();
oRun.AddText("This is just a sample text. ");
oParagraph.AddElement(oRun);
oRun = Api.CreateRun();
oRun.SetColor(255, 111, 61);
oRun.AddText("This is a text run with the font color set to orange.");
oParagraph.AddElement(oRun);

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