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 a paragraph to the section.
paragraph = section.AddParagraph();
// Create a table.
IWTable table = paragraph.AppendTable();
// Add columns to the table.
table.AddColumn(3);
// Add the first row.
WTableRow row_0 = table.AddRow();
// Assign a value to the cell[0,0].
row_0.Cells[0].AddParagraph().AppendText("A");
// Assign a value to the cell[0,1].
row_0.Cells[1].AddParagraph().AppendText("AA");
// Assign a value to the cell[0,2].
row_0.Cells[2].AddParagraph().AppendText("AAA");
VB
'' Add a 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 the first row.
Dim row_0 As WTableRow = table.AddRow()
'' Assign a value to cell[0,0].
row_0.Cells(0).AddParagraph().AppendText("A")
'' Assign a value to cell[0,1].
row_0.Cells(1).AddParagraph().AppendText("AA")
'' Assign a value to cell[0,2].
row_0.Cells(2).AddParagraph().AppendText("AAA")
Here is the sample.