跳到主要内容

SetShd

指定应用于当前表格范围的底纹。

语法

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

expression - 表示 ApiTable 类的变量。

参数

名称必需/可选数据类型默认值描述
sType必需ShdType | ApiFill应用于当前表格内容的底纹类型。可以是 ShdType 或 ApiFill。
r必需byte红色分量值。
g必需byte绿色分量值。
b必需byte蓝色分量值。

返回值

此方法不返回任何数据。

示例

此示例指定应应用于表格范围的底纹。

// How to add a shading to the table background.

// Create a table, set its shading color and add it to the slide.

const presentation = Api.GetPresentation();
const slide = presentation.GetSlideByIndex(0);
const table = Api.CreateTable(2, 4);
table.SetShd("clear", Api.HexColor('#FF6F3D'));
slide.RemoveAllObjects();
slide.AddObject(table);