Specifies the algorithm which will be used to lay out the contents of the current table within the document.
Name | Type | Description |
sType | "autofit" | "fixed" | The type of the table layout in the document. |
builder.CreateFile("docx"); var oDocument = Api.GetDocument(); var oParagraph = oDocument.GetElement(0); oParagraph.AddText("We set the table cells to preserve their size:"); var oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table"); oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered")); var oTable = Api.CreateTable(3, 3); oTable.SetTableLayout("fixed"); var oCell = oTable.GetRow(0).GetCell(0); oCell.GetContent().GetElement(0).AddText("Fixed layout"); oTable.SetStyle(oTableStyle); oDocument.Push(oTable); builder.SaveFile("docx", "SetTableLayout.docx"); builder.CloseFile();