Skip to main content

SetFill

Sets the text color to the current text run.

Syntax

expression.SetFill(oApiFill);

expression - A variable that represents a ApiRun class.

Parameters

NameRequired/OptionalData typeDefaultDescription
oApiFillRequiredApiFillThe color or pattern used to fill the text color.

Returns

ApiTextPr

Example

Apply a solid fill color to a text run in a spreadsheet.

// How do I color the text in a run using an RGB value in a spreadsheet?

// Paint a run's characters with a custom solid color to highlight it in a spreadsheet.

let worksheet = Api.GetActiveSheet();
let fill = Api.CreateSolidFill(Api.RGB(255, 111, 61));
let stroke = Api.CreateStroke(0, Api.CreateNoFill());
let shape = worksheet.AddShape("flowChartOnlineStorage", 120 * 36000, 35 * 36000, fill, stroke, 0, 2 * 36000, 0, 3 * 36000);
let content = shape.GetContent();
let paragraph = content.GetElement(0);
let run = Api.CreateRun();
run.AddText("This is just a sample text. ");
paragraph.AddElement(run);
run = Api.CreateRun();
fill = Api.CreateSolidFill(Api.RGB(128, 128, 128));
run.SetFill(fill);
run.AddText("This is a text run with the font color set to gray.");
paragraph.AddElement(run);