跳到主要内容

SetTableBorderBottom

设置将在当前表格底部显示的边框。

语法

expression.SetTableBorderBottom(sType, nSize, nSpace, r, g, b);

expression - 表示 ApiTable 类的变量。

参数

名称必需/可选数据类型默认值描述
sType必需BorderType底部边框样式。
nSize必需pt_8当前底部边框的宽度,以磅的八分之一为单位。
nSpace必需pt用于放置此边框的表格底部间距偏移量,以磅为单位。
r必需byte红色分量值。
g必需byte绿色分量值。
b必需byte蓝色分量值。

返回值

boolean

示例

此示例设置将在表格底部显示的边框。

// How to find out a style that will be applied to the table elements whish satisfy the condition.

// Retrieve a conditional table style.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("We add the bottom 4 point black border:");
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let tablePr = tableStyle.GetTablePr();
let table = Api.CreateTable(3, 3);
table.SetWidth("percent", 100);
tablePr.SetTableBorderBottom("single", 32, 0, 51, 51, 51);
table.SetTableLook(true, true, true, true, true, true);
table.SetStyle(tableStyle);
doc.Push(table);