Hello,
I am not finding a way to vertically align an image in a cell in Aspose.Words. Is there a way to do this?
Thanks,
Chris
Hello,
Hi Chris,
Table table = doc.FirstSection.Body.Tables[0];
Row row = table.LastRow;
row.LastCell.CellFormat.VerticalAlignment = CellVerticalAlignment.Center;
doc.Save(MyDir + @"17.1.0.docx");
Cool,