SetShd
指定应应用于当前表格单元格范围的底纹。
语法
expression.SetShd(shadingType, r, g, b);
expression - 表示 ApiTableCell 类的变量。
参数
| 名称 | 必需/可选 | 数据类型 | 默认值 | 描述 |
|---|---|---|---|---|
| shadingType | 必需 | ShdType | ApiFill | 要应用的底纹类型或填充。 | |
| r | 必需 | byte | 红色分量值。 | |
| g | 必需 | byte | 绿色分量值。 | |
| b | 必需 | byte | 蓝色分量值。 |
返回值
boolean
示例
在 PDF 中为表格单元格应用背景填充颜色。
// How do I change the background color of a table cell in a PDF?
// Color the background of your table cell in a PDF.
const doc = Api.GetDocument();
const page = doc.GetPage(0);
const table = Api.CreateTable(2, 4);
const row = table.GetRow(0);
const cell = row.GetCell(0);
const fill = Api.CreateSolidFill(Api.CreateRGBColor(51, 51, 51));
cell.SetShd(fill);
page.AddObject(table);