исправил код примера для большей наглядности

This commit is contained in:
alexandervnuchkov 2016-09-13 17:56:39 +03:00
parent d6cc8f7853
commit 4ed0df61f3

View File

@ -55,10 +55,19 @@ oParagraph = oDocument.GetElement(0);
oParagraph.AddText("We create a 3x3 table and set row #1 as the table header:"); oParagraph.AddText("We create a 3x3 table and set row #1 as the table header:");
oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table"); oTableStyle = oDocument.CreateStyle("CustomTableStyle", "table");
oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered - Accent 5")); oTableStyle.SetBasedOn(oDocument.GetStyle("Bordered - Accent 5"));
oTable = Api.CreateTable(3, 3); oTable = Api.CreateTable(3, 90);
oTable.SetWidth("percent", 100); oTable.SetWidth("percent", 100);
oTableRow = oTable.GetRow(0); oTableRow = oTable.GetRow(0);
oTableRow.SetTableHeader(true); oTableRow.SetTableHeader(true);
oCell = oTableRow.GetCell(0);
oParagraph = oCell.GetContent().GetElement(0);
oParagraph.AddText("Header cell #1");
oCell = oTableRow.GetCell(1);
oParagraph = oCell.GetContent().GetElement(0);
oParagraph.AddText("Header cell #2");
oCell = oTableRow.GetCell(2);
oParagraph = oCell.GetContent().GetElement(0);
oParagraph.AddText("Header cell #3");
oTable.SetStyle(oTableStyle); oTable.SetStyle(oTableStyle);
oDocument.Push(oTable); oDocument.Push(oTable);
builder.SaveFile("docx", "SetTableHeader.docx"); builder.SaveFile("docx", "SetTableHeader.docx");