Skip to main content

SetConditionalTableStyle

Sets conditional formatting properties that are applied to table parts matching the specified table style type.

Syntax

expression.SetConditionalTableStyle(oTableStylePr);

expression - A variable that represents a ApiStyle class.

Parameters

NameRequired/OptionalData typeDefaultDescription
oTableStylePrRequiredApiTableStylePrThe conditional table style properties.

Returns

ApiStyle

Example

Apply different formatting to specific regions of a table using conditional rules in a document.

// How do I style individual parts of a table differently depending on their position in a document?

// Target table sections such as the whole table or header row with distinct formatting rules in a document.

let doc = Api.GetDocument();
let table = Api.CreateTable(2, 2);

table.SetWidth("percent", 100);

let tableStyle = doc.CreateStyle("CustomTableStyle", "table");
table.SetStyle(tableStyle);
table.SetTableLook(true, true, true, true, true, true);

let tableStylePr = Api.CreateTableStylePr('wholeTable');
let tablePr = tableStyle.GetTablePr();
tablePr.SetTableBorderTop("single", 4, 0, 51, 51, 51);
tablePr.SetTableBorderBottom("single", 4, 0, 51, 51, 51);
tablePr.SetTableBorderLeft("single", 4, 0, 51, 51, 51);
tablePr.SetTableBorderRight("single", 4, 0, 51, 51, 51);
tablePr.SetTableBorderInsideV("single", 4, 0, 255, 111, 61);
tablePr.SetTableBorderInsideH("single", 4, 0, 255, 111, 61);
tableStylePr.GetTextPr().SetItalic(true);

tableStyle.SetConditionalTableStyle(tableStylePr);

let cellContent = table.GetRow(0).GetCell(0).GetContent();
let paragraph = cellContent.GetElement(0);
paragraph.AddText("This cell font is set to italic");

cellContent = table.GetRow(1).GetCell(0).GetContent();
paragraph = cellContent.GetElement(0);
paragraph.AddText("This cell font is also set to italic");

cellContent = table.GetRow(0).GetCell(1).GetContent();
paragraph = cellContent.GetElement(0);
paragraph.AddText("This cell font is also set to italic");

cellContent = table.GetRow(1).GetCell(1).GetContent();
paragraph = cellContent.GetElement(0);
paragraph.AddText("This cell font is also set to italic");

doc.Push(table);