B2017-058: Summary of Changes report, column information rearranges after table that has no grid audits

This commit is contained in:
Kathy Ruffing 2017-08-16 15:50:05 +00:00
parent a413025fcd
commit fca2704dc4

View File

@ -1504,6 +1504,19 @@ namespace Volian.Print.Library
//c.Border = borders;
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
{