SetNoWrap

SetNoWrap(isNoWrap)

Inherited From: ApiTableCellPr#SetNoWrap

Specifies how the current table cell is laid out when the parent table is displayed in a document. This setting only affects the behavior of the cell when the ApiTablePr#SetTableLayout table layout for this table is set to use the "autofit" algorithm.

Parameters:

Name Type Description
isNoWrap boolean

The true value means that the current table cell will not be wrapped in the parent table.

Returns:

This method doesn't return any data.

Example

Copy code
builder.CreateFile("docx");
var oDocument = Api.GetDocument();
var oParagraph = oDocument.GetElement(0);
var oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered"));
var oTablePr = oTableStyle.GetTablePr();
var oTable = Api.CreateTable(3, 3);
oTablePr.SetTableLayout("autofit");
oTable.SetTableLook(true, true, true, true, false, false);
oTable.SetStyle(oTableStyle);
var oCell = oTable.GetRow(0).GetCell(0);
oCell.GetContent().GetElement(0).AddText("This is a table with the autofit type of the table layout.");
oDocument.Push(oTable);
var oCopyTable1 = oTable.Copy();
oCopyTable1.SetWidth("percent", 10);
oCell = oCopyTable1.GetRow(0).GetCell(0);
oCell.Clear();
oCell.GetContent().GetElement(0).AddText("This is a table cell where text is wrapped when we try to change table width.");
oCell.SetNoWrap(false);
oDocument.Push(oCopyTable1);
var oCopyTable2 = oTable.Copy();
oCopyTable2.SetWidth("percent", 10);
oCell = oCopyTable2.GetRow(0).GetCell(0);
oCell.Clear();
oCell.GetContent().GetElement(0).AddText("This is a table cell where text is not wrapped when we try to change table width.");
oCell.SetNoWrap(true);
oDocument.Push(oCopyTable2);
builder.SaveFile("docx", "SetNoWrap.docx");
builder.CloseFile();

Resulting document