테이블 조인

Contents
[ ]

Aspose.Words Document Object Model로 표현되는 테이블은 독립적인 행과 셀로 구성되어 있어 테이블 조인이 쉽습니다.

다른 테이블과 조인하기 위해 테이블을 조작하려면 두 번째 테이블의 행을 첫 번째 테이블의 끝으로 이동하고 두 번째 테이블의 컨테이너를 제거하면 됩니다.

다음 코드 예제에서는 두 테이블의 행을 하나로 병합하는 방법을 보여줍니다

// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git.
Document doc = new Document(MyDir + "Tables.docx");
// The rows from the second table will be appended to the end of the first table.
Table firstTable = (Table) doc.GetChild(NodeType.Table, 0, true);
Table secondTable = (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.HasChildNodes)
firstTable.Rows.Add(secondTable.FirstRow);
secondTable.Remove();
doc.Save(ArtifactsDir + "WorkingWithTables.CombineRows.docx");
view raw combine-rows.cs hosted with ❤ by GitHub