Hello,
I created a dynamic table on the fly, how can I add text to a tablecell?
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.StartTable();
builder.PageSetup.Orientation = Aspose.Words.Orientation.Landscape;
builder.CellFormat.Width = 100;
for (int Count = 1; Count <= numberOfStudents; Count++)
{
for (int Count2 = 1; Count2 <= numberOfPlannedCourses; Count2++)
{
builder.InsertCell();
}
builder.EndRow();
}
builder.EndTable();