i have code. I dont understand why second row is not wrapped full length. How make it?
Aspose.Words.Document doc = new Aspose.Words.Document();
DocumentBuilder builder = new DocumentBuilder(doc);
// We call this method to start building the table.
builder.StartTable();
builder.InsertCell();
builder.Write("Row 1, Cell 1 Content.");
builder.InsertCell();
builder.Write("Row 1, Cell 2 Content.");
builder.EndRow();
builder.InsertCell();
builder.Write("axi.");
builder.EndRow();
// Signal that we have finished building the table.
builder.EndTable();
doc.Save("axo.doc");
http://s019.radikal.ru/i601/1601/c4/ea6f4764ea0e.png