跳到主要内容

SetTextFill

设置当前文本运行的文本填充。

语法

expression.SetTextFill(oApiFill);

expression - 表示 ApiTextPr 类的变量。

参数

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

返回值

ApiTextPr

示例

此示例设置当前文本运行的文本填充。

// How to color a text with solid fill.

// Set color a text using solid color fill.

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, 70 * 36000, fill, stroke, 0, 2 * 36000, 0, 3 * 36000);
let content = shape.GetContent();
let paragraph = content.GetElement(0);
let run = Api.CreateRun();
let textProps = run.GetTextPr();
textProps.SetFontSize(30);
fill = Api.CreateSolidFill(Api.RGB(128, 128, 128));
run.SetTextFill(fill);
paragraph.SetJc("left");
run.AddText("This is a text run with the gray text set using the text properties.");
paragraph.AddElement(run);