테이블 조인
Contents
[
Hide
]
Aspose.Words Document Object Model로 표현되는 테이블은 독립적인 행과 셀로 구성되어 있어 테이블 조인이 쉽습니다.
테이블을 조작하여 다른 테이블과 조인하려면 두 번째 테이블의 행을 첫 번째 테이블의 끝으로 이동하고 두 번째 테이블의 컨테이너를 제거하면 됩니다.
다음 코드 예제에서는 두 테이블의 행을 하나로 병합하는 방법을 보여줍니다
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-Python-via-.NET.git. | |
doc = aw.Document(MY_DIR + "Tables.docx") | |
# The rows from the second table will be appended to the end of the first table. | |
first_table = doc.get_child(aw.NodeType.TABLE, 0, True).as_table() | |
second_table = doc.get_child(aw.NodeType.TABLE, 1, True).as_table() | |
# Append all rows from the current table to the next tables | |
# with different cell count and widths can be joined into one table. | |
while second_table.has_child_nodes: | |
first_table.rows.add(second_table.first_row) | |
second_table.remove() | |
doc.save(ARTIFACTS_DIR + "WorkingWithTables.combine_rows.docx") |