SetTableBorderInsideV
指定将在所有不在父表格最外边缘的垂直表格单元格边框上显示的边框 (所有非最左或最右边框的垂直边框)。
继承自 ApiTablePr.SetTableBorderInsideV。
示例
指定在不位于父表格最外边缘的所有垂直表格单元格边框上显示的边框。
// How to set inside vertical border to the table in a document.
// How to create a 3x3 table and add the inside vertical 4 point orange borders in a document.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("We add the inside vertical 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.SetTableBorderInsideV("single", 32, 0, 51, 51, 51);
table.SetTableLook(true, true, true, true, false, false);
table.SetStyle(tableStyle);
doc.Push(table);