连接表
Contents
[
Hide
]
在Aspose.Words文档对象模型中表示的表由独立的行和单元格组成,因此可以轻松连接表。
要操作一个表与另一个表连接,我们只需要将第二个表中的行移动到第一个表的末尾,并删除第二个表的容器。
下面的代码示例演示如何将两个表中的行合并为一个表:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-C.git. | |
auto doc = MakeObject<Document>(MyDir + u"Tables.docx"); | |
// The rows from the second table will be appended to the end of the first table. | |
auto firstTable = System::ExplicitCast<Table>(doc->GetChild(NodeType::Table, 0, true)); | |
auto secondTable = System::ExplicitCast<Table>(doc->GetChild(NodeType::Table, 1, true)); | |
// Append all rows from the current table to the next tables | |
// with different cell count and widths can be joined into one table. | |
while (secondTable->get_HasChildNodes()) | |
{ | |
firstTable->get_Rows()->Add(secondTable->get_FirstRow()); | |
} | |
secondTable->Remove(); | |
doc->Save(ArtifactsDir + u"WorkingWithTables.CombineRows.docx"); |