SetShd
指定应用于当前文本块内容的底纹。
语法
expression.SetShd(type, color);
expression - 表示 ApiRun 类(文本块)的变量。
参数
| 名称 | 必需/可选 | 数据类型 | 默认值 | 描述 |
|---|---|---|---|---|
| type | 必需 | ShdType | 应用于当前文本块内容的底纹类型。 | |
| color | 必需 | ApiColor | 底纹颜色。 |
返回值
示例
在文档中为文本运行应用背景底纹颜色。
// How do I shade the background behind a run of text in a document?
// Color the area behind words to make them stand out in a document.
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);