Skip to main content

GetTablePr

Returns a set of the table properties which will be applied to all the regions within a table which match the conditional formatting type.

Syntax

expression.GetTablePr();

expression - A variable that represents a ApiTableStylePr class.

Parameters

This method doesn't have any parameters.

Returns

ApiTablePr

Example

This example shows how to get a set of the table properties which will be applied to all the regions within a table which match the conditional formatting type.

let doc = Api.GetDocument();
let paragraph = doc.GetElement(0);
paragraph.AddText("We create a 3x3 table and set the bottom 4 point black border to it:");
let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
tableStyle.SetBasedOn(doc.GetStyle("Bordered"));
let table = Api.CreateTable(3, 3);
table.SetWidth("percent", 100);
let tableStylePr = tableStyle.GetConditionalTableStyle("wholeTable");
table.SetTableLook(true, true, true, true, true, true);
tableStylePr.GetTablePr().SetTableBorderBottom("single", 32, 0, 51, 51, 51);
table.SetStyle(tableStyle);
doc.Push(table);