SetShd
指定应用于当前表格范围的底纹。
语法
expression.SetShd(sType, r, g, b);
expression - 表示 ApiTable 类的变量。
参数
| 名称 | 必需/可选 | 数据类型 | 默认值 | 描述 |
|---|---|---|---|---|
| sType | 必需 | ShdType | ApiFill | 应用于当前表格内容的底纹类型。可以是 ShdType 或 ApiFill。 | |
| r | 必需 | byte | 红色分量值。 | |
| g | 必需 | byte | 绿色分量值。 | |
| b | 必需 | byte | 蓝色分量值。 |
返回值
boolean
示例
如何为表格背景添加底纹。
// Create a table, set its shading color and add it to the page.
const doc = Api.GetDocument();
const page = doc.GetPage(0);
const table = Api.CreateTable(2, 4);
table.SetShd("clear", 255, 111, 61);
page.AddObject(table);