跳到主要内容

GetTableTitle

返回表格标题(题注)。

语法

expression.GetTableTitle();

expression - 表示 ApiTablePr 类的变量。

参数

此方法没有任何参数。

返回值

string

示例

此示例展示如何获取表格标题。

// How to get the table title.

// Display the title of the table in the document.

let doc = Api.GetDocument();
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.SetTableTitle("Table 1");
table.SetStyle(tableStyle);
let paragraph = doc.GetElement(0);
paragraph.AddText("Table title: " + tablePr.GetTableTitle());
doc.Push(table);