跳到主要内容

SetShd

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

语法

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

expression - 表示 ApiTable 类的变量。

参数

名称必需/可选数据类型默认值描述
shadingType必需ShdType | ApiFill要应用的底纹类型或填充。
r必需byte红色分量值。
g必需byte绿色分量值。
b必需byte蓝色分量值。

返回值

boolean

示例

在 PDF 中为表格应用背景颜色底纹。

// How do I add color to the background of a table in a PDF?

// Set the background fill color for your entire table in a PDF.

const doc = Api.GetDocument();
const page = doc.GetPage(0);

const table = Api.CreateTable(2, 4);
table.SetShd("clear", 255, 111, 61);

page.AddObject(table);