SetCellMarginBottom
指定表格中特定表格单元格的内容底边与 单元格边框之间的间距。
语法
expression.SetCellMarginBottom(nValue);
expression - 表示 ApiTableCellPr 类的变量。
参数
| 名称 | 必需/可选 | 数据类型 | 默认值 | 描述 |
|---|---|---|---|---|
| nValue | 必需 | twips | 单元格底部下方的空间量值,以二十分之一磅(1/1440 英寸)为单位。如果此值为 <code>null</code>,则使用默认表格单元格下边距,否则将用指定值覆盖当前单元格的下边距。 |
返回值
boolean
示例
设置文档中表格单元格内容与底部边缘之间的间距。
// How do I control the gap between text and the bottom border of a table cell in a document?
// Push cell content away from the bottom boundary of a table cell in a document.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let table = Api.CreateTable(3, 3);
let cell = table.GetRow(0).GetCell(0);
cell.GetContent().GetElement(0).AddText("This is just a sample text to show that the bottom margin for all the table cells is 36 points.");
table.SetWidth("percent", 100);
let tableCellPr = tableStyle.GetTableCellPr();
tableCellPr.SetCellMarginBottom(720);
table.SetStyle(tableStyle);
doc.Push(table);