I have a question ralated to aspose words hoping you can help me…
I am trying to add rows to existing word table which I am able to do using the code below
Aspose.Words.Tables.Row newRow = (Aspose.Words.Tables.Row) lastTable.LastRow.Clone(true);
foreach(Aspose.Words.Tables.Cell cell in newRow.Cells)
{
// HOW CAN I ADD TEXT TO EACH CELL LIKE BELOW:
cell1 text = "cell 1 tex";
cell2 text = "cell 3 tex";
cell3 text = "cell 3 tex";
}
The code has three cells. I am trying to add text to each cell… Please advise.