跳到主要内容

SetShd

指定应用于表格单元格内容的底纹。

语法

expression.SetShd(sType, r, g, b, isAuto);

expression - 表示 ApiTableCellPr 类的变量。

参数

名称必需/可选数据类型默认值描述
sType必需ShdType将应用于当前表格单元格内容的底纹类型。
r必需byte红色分量值。
g必需byte绿色分量值。
b必需byte蓝色分量值。
isAuto可选booleanfalsetrue 值禁用表格单元格内容的底纹。

返回值

boolean

示例

在文档中为表格单元格应用背景颜色。

// How do I fill a table cell with a specific background color in a document?

// Highlight a table cell by giving it a colored background in a document.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("We create a 3x3 table and add add an orange shading to all cells:");
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let table = Api.CreateTable(3, 3);
table.SetWidth("percent", 100);
let tableCellPr = tableStyle.GetTableCellPr();
tableCellPr.SetShd("clear", Api.HexColor('#FF6F3D'));
table.SetStyle(tableStyle);
doc.Push(table);