How do I create a simple table in a paragraph?
The paragraph.AppendTable() method of paragraph is used to append the table in a paragraph of a document.
C#
//Add paragraph to the section.
paragraph = section.AddParagraph();
//Create a table
IWTable table = paragraph.AppendTable();
//Add columns to the table
table.AddColumn(3);
//Add first row
WTableRow row_0 = table.AddRow();
//Assign value to the cell[0,0].
row_0.Cells[0].AddParagraph().AppendText("A");
//Assign value to the cell[0,1].
row_0.Cells[1].AddParagraph().AppendText("AA");
//Assign value to the cell[0,2].
row_0.Cells[2].AddParagraph().AppendText("AAA");
VB
''Add paragraph to the section.
paragraph = section.AddParagraph()
''Create a table
Dim table As IWTable = paragraph.AppendTable()
''Add columns to the table
table.AddColumn(3)
''Add first row
Dim row_0 As WTableRow = table.AddRow()
''Assign value to the cell[0,0].
row_0.Cells(0).AddParagraph().AppendText("A")
''Assign value to the cell[0,1].
row_0.Cells(1).AddParagraph().AppendText("AA")
''Assign value to the cell[0,2].
row_0.Cells(2).AddParagraph().AppendText("AAA")
Here is the sample.