Dividi tabella
Una tabella, rappresentata nel modello a oggetti del documento Aspose.Words, è composta da righe e celle indipendenti, semplificando la suddivisione di una tabella.
Per manipolare una tabella per dividerla in due tabelle, dobbiamo solo spostare alcune delle righe dalla tabella originale a quella nuova. Per fare ciò, dobbiamo scegliere la riga con cui vogliamo dividere la tabella.
Possiamo creare due tabelle dalla tabella originale seguendo questi semplici passaggi:
- Creare un clone della tabella senza clonare i figli per mantenere le righe spostate e inserirle dopo la tabella originale
- A partire dalla riga specificata, spostare tutte le righe successive in questa seconda tabella
L’esempio di codice seguente mostra come dividere una tabella in due tabelle su una riga specifica:
// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-Java.git. | |
Document doc = new Document(getMyDir() + "Tables.docx"); | |
Table firstTable = (Table) doc.getChild(NodeType.TABLE, 0, true); | |
// We will split the table at the third row (inclusive). | |
Row row = firstTable.getRows().get(2); | |
// Create a new container for the split table. | |
Table table = (Table) firstTable.deepClone(false); | |
// Insert the container after the original. | |
firstTable.getParentNode().insertAfter(table, firstTable); | |
// Add a buffer paragraph to ensure the tables stay apart. | |
firstTable.getParentNode().insertAfter(new Paragraph(doc), firstTable); | |
Row currentRow; | |
do | |
{ | |
currentRow = firstTable.getLastRow(); | |
table.prependChild(currentRow); | |
} while (currentRow != row); | |
doc.save(getArtifactsDir() + "WorkingWithTables.SplitTable.docx"); |