跳到主要内容

SetTextPr

Applies the text settings to the entire contents of the current cell.

Syntax

expression.SetTextPr(oTextPr);

expression - A variable that represents a ApiTableCell class.

Parameters

NameRequired/OptionalData typeDefaultDescription
oTextPrRequiredApiTextPrThe properties that will be set to the current table cell text.

Returns

boolean

Example

This example applies the text settings to the entire contents of the cell.

// Set text properties to the table cell.

// Make the table cell bold and with bigger font.

let doc = Api.GetDocument();
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let table = Api.CreateTable(3, 3);
table.SetWidth("percent", 100);
table.SetStyle(tableStyle);
table.GetCell(0, 0).GetContent().GetElement(0).AddText("Cell 1");
doc.Push(table);
let textPr = Api.CreateTextPr();
textPr.SetFontSize(30);
textPr.SetBold(true);
table.GetCell(0, 0).SetTextPr(textPr);