hi alexey
Greeing for the day!
I have table in word document .In that table I need to add extra one column in existing table.
I need c# code for this .kindly help me on this it much appreciated
hi alexey
Greeing for the day!
I have table in word document .In that table I need to add extra one column in existing table.
I need c# code for this .kindly help me on this it much appreciated
@siva1950 Aspose.Words, like MS Word, does not manage the concept of a column in the document structure. To insert a new column in an existing table, you need to insert a new cell in each of the rows of the table. See the following example:
Table table = (Table)doc.GetChildNodes(NodeType.Table, true).FirstOrDefault();
if(table != null)
{
foreach(Row row in table.Rows)
{
row.AppendChild(new Cell(doc));
}
}
Hi eduardo,
Greeting for the day
I Need help that how to find font and color has been used for the string in c#.
and Also
Need help that how to find font and color has been used for the whole word document in c#.