Tables are helpful to organize information and figures. We often insert tables in word documents (DOCX/DOC) to show information. In a word processing application, you can easily create tables using C++. You can go through the following examples to learn working with Tables in Word documents:
- Insert Tables in Word Documents API
- Insert a Table in Word Documents using C++
- Insert Table from HTML in Word Documents using C++
- Insert Table in DOCX Using Document Builder in C++
Let us move on to explore all these topics in detail:
Insert Tables in Word Documents API
Firstly, please note that you will be using Aspose.Words for C++ API to insert tables in a word document. You can configure the API by downloading it from New Releases or via the NuGet gallery. Once configured properly, you can simply utilize the methods, properties, and classes exposed by the API so that a few simple API calls can be used to create, edit or manipulate Microsoft Word documents, like DOCX or DOC files.
Insert a Table in Word Documents using C++
You can insert a table in word documents with a few simple steps. However, it is important to note here that you must pass the document object to the constructor of each node so that all child nodes belong to the same object. You need to follow the steps listed below:
- Initialize object of Document class
- Create Table object
- Add the Table to Document
- Create Rows and Columns
- Apply AutoFit on Table Cells
- Save output Word Document
The code snippet below shows how to insert a Table in Word document (DOCX/DOC) using C++:
// The path to the documents directory. | |
System::String outputDataDir = dataDir; | |
System::SharedPtr<Document> doc = System::MakeObject<Document>(); | |
// We start by creating the table object. Note how we must pass the document object | |
// To the constructor of each node. This is because every node we create must belong | |
// To some document. | |
System::SharedPtr<Table> table = System::MakeObject<Table>(doc); | |
// Add the table to the document. | |
doc->get_FirstSection()->get_Body()->AppendChild(table); | |
// Here we could call EnsureMinimum to create the rows and cells for us. This method is used | |
// To ensure that the specified node is valid, in this case a valid table should have at least one | |
// Row and one cell, therefore this method creates them for us. | |
// Instead we will handle creating the row and table ourselves. This would be the best way to do this | |
// If we were creating a table inside an algorthim for example. | |
System::SharedPtr<Row> row = System::MakeObject<Row>(doc); | |
row->get_RowFormat()->set_AllowBreakAcrossPages(true); | |
table->AppendChild(row); | |
// We can now apply any auto fit settings. | |
table->AutoFit(AutoFitBehavior::FixedColumnWidths); | |
// Create a cell and add it to the row | |
System::SharedPtr<Cell> cell = System::MakeObject<Cell>(doc); | |
cell->get_CellFormat()->get_Shading()->set_BackgroundPatternColor(System::Drawing::Color::get_LightBlue()); | |
cell->get_CellFormat()->set_Width(80); | |
// Add a paragraph to the cell as well as a new run with some text. | |
cell->AppendChild(System::MakeObject<Paragraph>(doc)); | |
cell->get_FirstParagraph()->AppendChild(System::MakeObject<Run>(doc, u"Row 1, Cell 1 Text")); | |
// Add the cell to the row. | |
row->AppendChild(cell); | |
// We would then repeat the process for the other cells and rows in the table. | |
// We can also speed things up by cloning existing cells and rows. | |
row->AppendChild((System::StaticCast<Node>(cell))->Clone(false)); | |
row->get_LastCell()->AppendChild(System::MakeObject<Paragraph>(doc)); | |
row->get_LastCell()->get_FirstParagraph()->AppendChild(System::MakeObject<Run>(doc, u"Row 1, Cell 2 Text")); | |
System::String outputPath = outputDataDir + u"InsertTableDirectly.doc"; | |
// Save the document to disk. | |
doc->Save(outputPath); |
Insert Table from HTML in Word Documents using C++
It is possible that an HTML file contains Table that you need to insert into your word documents like DOCX, DOC, etc. Or you may need to copy a table from a website. So instead of creating and designing the table from scratch, you can easily parse HTML markup as a table into word document. For example, you can add a table into word document using the following HTML string:
<table><tr><td>Row 1, Cell 1</td><td>Row 1, Cell 2</td></tr><tr><td>Row 2, Cell 1</td><td>Row 2, Cell 2</td></tr></table>
We have kept the contents simple so that the support for table tag can be demonstrated with basic yet important use case. Moreover, it is important to note here that AutoFit can not be applied on tables which are created from HTML.
Let us follow the steps below for inserting HTML table in Word document:
- Initialize an instance of Document class
- Pass the HTML markup with InsertHtml method
- Save output DOCX word file
Below code follows these steps and shows how to create table in Word document with HTML using C++:
// The path to the documents directory. | |
System::String outputDataDir = dataDir; | |
System::SharedPtr<Document> doc = System::MakeObject<Document>(); | |
System::SharedPtr<DocumentBuilder> builder = System::MakeObject<DocumentBuilder>(doc); | |
// Insert the table from HTML. Note that AutoFitSettings does not apply to tables | |
// Inserted from HTML. | |
builder->InsertHtml(u"<table><tr><td>Row 1, Cell 1</td><td>Row 1, Cell 2</td></tr><tr><td>Row 2, Cell 1</td><td>Row 2, Cell 2</td></tr></table>"); | |
System::String outputPath = outputDataDir + u"InsertTableFromHtml.doc"; | |
// Save the document to disk. | |
doc->Save(outputPath); |
You can notice this method is a bit simpler than the approach we have explored above. The reason being, you do not need to add each node one by one for the rows, columns, or cells because the Table tag in the HTML string contains all information. Following is a screenshot of this simple HTML table added into the Word document:

Insert Table Using Document Builder in C++
The best thing about Aspose.Words for C++ API is that it offers a variety of features that become a competitive edge for the API and make it stand out among other options. Likewise, the feature of the inserting table using a document builder is another approach of adding tables in word documents (DOC/DOCX). So let us explore the details from three different perspectives:
1) Insert Simple Table in DOCX with Document Builder using C++
For adding a simple table in word document with Document builder, you need to follow the steps below:
- Create Document Object
- Call StartTable() method and insert cells
- Add the Row and Cells
- Save output DOCX file
Moreover, the code snippet below shows how to insert simple table in DOCX file with C++:
System::SharedPtr<Document> doc = System::MakeObject<Document>(); | |
System::SharedPtr<DocumentBuilder> builder = System::MakeObject<DocumentBuilder>(doc); | |
// We call this method to start building the table. | |
builder->StartTable(); | |
builder->InsertCell(); | |
builder->Write(u"Row 1, Cell 1 Content."); | |
// Build the second cell | |
builder->InsertCell(); | |
builder->Write(u"Row 1, Cell 2 Content."); | |
// Call the following method to end the row and start a new row. | |
builder->EndRow(); | |
// Build the first cell of the second row. | |
builder->InsertCell(); | |
builder->Write(u"Row 2, Cell 1 Content"); | |
// Build the second cell. | |
builder->InsertCell(); | |
builder->Write(u"Row 2, Cell 2 Content."); | |
builder->EndRow(); | |
// Signal that we have finished building the table. | |
builder->EndTable(); | |
System::String outputPath = outputDataDir + u"InsertTableUsingDocumentBuilder.SimpleTable.doc"; | |
// Save the document to disk. | |
doc->Save(outputPath); |
2) Insert Formatted Table in DOCX with Document Builder using C++
You can insert a formatted table into a word document with the steps below:
- Initialize an instance of Document class
- Make Header Row
- Set indents and features for the formatting
- Reset Font formatting
- Save output Word DOCX file
Below code snippet creates formatted table in DOCX file using C++:
System::SharedPtr<Document> doc = System::MakeObject<Document>(); | |
System::SharedPtr<DocumentBuilder> builder = System::MakeObject<DocumentBuilder>(doc); | |
System::SharedPtr<Table> table = builder->StartTable(); | |
// Make the header row. | |
builder->InsertCell(); | |
// Set the left indent for the table. Table wide formatting must be applied after | |
// At least one row is present in the table. | |
table->set_LeftIndent(20.0); | |
// Set height and define the height rule for the header row. | |
builder->get_RowFormat()->set_Height(40.0); | |
builder->get_RowFormat()->set_HeightRule(HeightRule::AtLeast); | |
// Some special features for the header row. | |
builder->get_CellFormat()->get_Shading()->set_BackgroundPatternColor(System::Drawing::Color::FromArgb(198, 217, 241)); | |
builder->get_ParagraphFormat()->set_Alignment(ParagraphAlignment::Center); | |
builder->get_Font()->set_Size(16); | |
builder->get_Font()->set_Name(u"Arial"); | |
builder->get_Font()->set_Bold(true); | |
builder->get_CellFormat()->set_Width(100.0); | |
builder->Write(u"Header Row,\n Cell 1"); | |
// We don't need to specify the width of this cell because it's inherited from the previous cell. | |
builder->InsertCell(); | |
builder->Write(u"Header Row,\n Cell 2"); | |
builder->InsertCell(); | |
builder->get_CellFormat()->set_Width(200.0); | |
builder->Write(u"Header Row,\n Cell 3"); | |
builder->EndRow(); | |
// Set features for the other rows and cells. | |
builder->get_CellFormat()->get_Shading()->set_BackgroundPatternColor(System::Drawing::Color::get_White()); | |
builder->get_CellFormat()->set_Width(100.0); | |
builder->get_CellFormat()->set_VerticalAlignment(CellVerticalAlignment::Center); | |
// Reset height and define a different height rule for table body | |
builder->get_RowFormat()->set_Height(30.0); | |
builder->get_RowFormat()->set_HeightRule(HeightRule::Auto); | |
builder->InsertCell(); | |
// Reset font formatting. | |
builder->get_Font()->set_Size(12); | |
builder->get_Font()->set_Bold(false); | |
// Build the other cells. | |
builder->Write(u"Row 1, Cell 1 Content"); | |
builder->InsertCell(); | |
builder->Write(u"Row 1, Cell 2 Content"); | |
builder->InsertCell(); | |
builder->get_CellFormat()->set_Width(200.0); | |
builder->Write(u"Row 1, Cell 3 Content"); | |
builder->EndRow(); | |
builder->InsertCell(); | |
builder->get_CellFormat()->set_Width(100.0); | |
builder->Write(u"Row 2, Cell 1 Content"); | |
builder->InsertCell(); | |
builder->Write(u"Row 2, Cell 2 Content"); | |
builder->InsertCell(); | |
builder->get_CellFormat()->set_Width(200.0); | |
builder->Write(u"Row 2, Cell 3 Content."); | |
builder->EndRow(); | |
builder->EndTable(); | |
System::String outputPath = outputDataDir + u"InsertTableUsingDocumentBuilder.FormattedTable.doc"; | |
// Save the document to disk. | |
doc->Save(outputPath); |
3) Insert Nested Table in DOCX with Document Builder using C++
Sometimes we need another table inside an existing table. For instance, a cell in some row or column of a table can contain a sub-table for a sub-category or some other field. In such scenarios, Nested tables are helpful which can be added by following the steps below:
- Build outer Table and then call EndTable method
- Build inner Table inside a cell of outer table
- Save output word document
The following code snippet shows how to insert nested table in Word document using C++:
System::SharedPtr<Document> doc = System::MakeObject<Document>(); | |
System::SharedPtr<DocumentBuilder> builder = System::MakeObject<DocumentBuilder>(doc); | |
// Build the outer table. | |
System::SharedPtr<Cell> cell = builder->InsertCell(); | |
builder->Writeln(u"Outer Table Cell 1"); | |
builder->InsertCell(); | |
builder->Writeln(u"Outer Table Cell 2"); | |
// This call is important in order to create a nested table within the first table | |
// Without this call the cells inserted below will be appended to the outer table. | |
builder->EndTable(); | |
// Move to the first cell of the outer table. | |
builder->MoveTo(cell->get_FirstParagraph()); | |
// Build the inner table. | |
builder->InsertCell(); | |
builder->Writeln(u"Inner Table Cell 1"); | |
builder->InsertCell(); | |
builder->Writeln(u"Inner Table Cell 2"); | |
builder->EndTable(); | |
System::String outputPath = outputDataDir + u"InsertTableUsingDocumentBuilder.NestedTable.doc"; | |
// Save the document to disk. | |
doc->Save(outputPath); |
Conclusion
To sum up, we have learned how to insert different tables in Word documents using different approaches. You can insert simple table or with HTML string as well as the formatted and nested tables into the word documents (DOC/DOCX). However, in case of any confusion or query, you can reach out to us at Free Support Forums. Moreover, you can also refer to API References and Product Documentation for your kind reference.