SetJc
指定当前表格相对于当前节中文本边距的对齐方式。
语法
expression.SetJc(sJcType);
expression - 表示 ApiTable 类的变量。
参数
| 名称 | 必需/可选 | 数据类型 | 默认值 | 描述 |
|---|---|---|---|---|
| sJcType | 必需 | "left" | "right" | "center" | 用于当前表格放置的对齐类型。 |
返回值
boolean
示例
此示例指定表格相对于当前节中文本边距的对齐方式。
// How to set justification of the paragraph content.
// Change the justification of the paragraph.
let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("The table is aligned at the center of the page horizontally:");
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let tablePr = tableStyle.GetTablePr();
tablePr.SetJc("center");
let table = Api.CreateTable(3, 3);
table.SetWidth("percent", 50);
table.SetTableLook(true, true, true, true, false, false);
table.SetStyle(tableStyle);
doc.Push(table);