跳到主要内容

SetCellBorderRight

设置将显示在当前表格单元格右侧的边框。

语法

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

expression - 表示 ApiTableCellPr 类的变量。

参数

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

返回值

boolean

示例

此示例设置将显示在表格单元格右侧的边框。

// How to add margin to the right of the cell.

// Create a 3x3 table and add the right cell margin.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("We create a 3x3 table and add the right 4 point black border to all cells:");
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let table = Api.CreateTable(3, 3);
table.SetWidth("percent", 100);
let tableCellPr = tableStyle.GetTableCellPr();
tableCellPr.SetCellBorderRight("single", 32, 0, 51, 51, 51);
table.SetStyle(tableStyle);
doc.Push(table);