Hi
How to get horizontal alignment of
Aspose.Words.Tables.Cell That is how to know the cell value is right or left aligned
Hi
How to get horizontal alignment of
Aspose.Words.Tables.Cell That is how to know the cell value is right or left aligned
Hi Ajeesh,
how to get the horizontal alignment of paragraph
Hi
Ajeesh,
Cell c = tab.Rows[0].Cells[2];
Paragraph p = c.FirstParagraph;
Console.WriteLine(p.ParagraphFormat.Alignment);
I managed to find i solution: I had to set the alignment of all other paragraphs in the table to the left.