SetTableBorderAll
指定将在所有表格单元格边框上显示的边框。
语法
expression.SetTableBorderAll(sType, nSize, nSpace, r, g, b);
expression - 表示 ApiTable 类的变量。
参数
| 名称 | 必需/可选 | 数据类型 | 默认值 | 描述 |
|---|---|---|---|---|
| sType | 必需 | BorderType | 边框样式。 | |
| nSize | 必需 | pt_8 | 当前边框的宽度,以磅的八分之一为单位。 | |
| nSpace | 必需 | pt | 用于放置此边框的表格单元格间距偏移量,以磅为单位。 | |
| r | 必需 | byte | 红色分量值。 | |
| g | 必需 | byte | 绿色分量值。 | |
| b | 必需 | byte | 蓝色分量值。 |
返回值
boolean
示例
此示例展示如何为整个表格设置边框。
const doc = Api.GetDocument();
const paragraph = doc.GetElement(0);
paragraph.AddText("We create a 3x3 table and add 4 point black border for the entrire table:");
const tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
const tablePr = tableStyle.GetTablePr();
const table = Api.CreateTable(3, 3);
table.SetWidth("percent", 100);
tablePr.SetTableBorderAll("single", 32, 0, 51, 51, 51);
table.SetTableLook(true, true, true, true, false, false);
table.SetStyle(tableStyle);
doc.Push(table);