SetHighlight

SetHighlight(sColor) → { ApiRange | null }

Specifies a highlighting color which is applied as a background to the contents of the current Range.

Parameters:

Name Type Description
sColor highlightColor

Available highlight color.

Returns:

Type
ApiRange | null

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
oParagraph.AddText("ONLYOFFICE Document Builder");
var oRange = oDocument.GetRange(0, 26);
oRange.SetHighlight("lightGray");
builder.SaveFile("docx", "SetHighlight.docx");
builder.CloseFile();

Resulting document