跳到主要内容

SetFill

设置当前文本运行的文本颜色。

语法

expression.SetFill(oApiFill);

expression - 表示 ApiRun 类的变量。

参数

名称必需/可选数据类型默认值描述
oApiFill必需ApiFill用于填充文本颜色的颜色或图案。

返回值

ApiTextPr

示例

此示例设置当前文本运行的文本颜色。

// How to color a text object.

// Create a text run object, add a color to it using RGB format.

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