B2017-058: Summary of Changes report, column information rearranges after table that has no grid audits
This commit is contained in:
parent
a413025fcd
commit
fca2704dc4
@ -1504,6 +1504,19 @@ namespace Volian.Print.Library
|
|||||||
//c.Border = borders;
|
//c.Border = borders;
|
||||||
t.AddCell(c);
|
t.AddCell(c);
|
||||||
}
|
}
|
||||||
|
// B2017-058: The following was added to handle when there are no grid audits, just put a message. Without
|
||||||
|
// adding this cell to the output, the columns get out of sync for rest of report.
|
||||||
|
else
|
||||||
|
{
|
||||||
|
h = new Phrase();
|
||||||
|
h.Font = f4;
|
||||||
|
h.Add( "No change in table text found.");
|
||||||
|
c = new PdfPCell(h);
|
||||||
|
c.Colspan = 1;
|
||||||
|
c.HorizontalAlignment = Element.ALIGN_LEFT;
|
||||||
|
c.PaddingBottom = paddingBottom;
|
||||||
|
t.AddCell(c);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user