Sorry guys, me again
Don’t wanna waste your weekend, but having another little issue here. It seems that
RowFormat.Height is not returning the updated value. I have a document with a table and I fill that table with the Mail Merge function. Some rows then have 3 lines and some 4 or 5. To calculate the right line break, I tried to record the REAL height of every column, but unfortunatly RowFormat.Height always seems to return the same number.
public class CollectRowHeightsInTable: DocumentVisitor
{
public override VisitorAction VisitRowEnd(Aspose.Words.Tables.Row row)
{
double height = row.RowFormat.Height;
return VisitorAction.Continue;
}
}