跳到主要内容

SetShd

指定应用于当前文本块内容的底纹。

语法

expression.SetShd(type, color);

expression - 表示 ApiRun 类(文本块)的变量。

参数

名称必需/可选数据类型默认值描述
type必需ShdType应用于当前文本块内容的底纹类型。
color必需ApiColor底纹颜色。

返回值

ApiTextPr

示例

此示例指定应用于当前文本块内容的底纹。

// How to add shading to the text.

// Create a new text run and apply shading to it.

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.SetShd("clear", Api.HexColor('#FF6F3D'));
run.AddText("This is a text run with the text shading set to orange.");
paragraph.AddElement(run);