SetHighlight
Specifies a highlighting color which is applied as a background to the contents of the current run.
Syntax
expression.SetHighlight(sColor);
expression
- A variable that represents a ApiRun class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
sColor | Required | highlightColor | Available highlight color. |
Returns
Example
This example specifies a highlighting color which is applied as a background to the contents of the run.
- Code
- Result
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let run = Api.CreateRun();
run.AddText("This is just a sample text. ");
paragraph.AddElement(run);
run = Api.CreateRun();
run.SetHighlight("lightGray");
run.AddText("This is a text run with the text highlighted with light gray color.");
paragraph.AddElement(run);