fixed missing end message if continuous section.

This commit is contained in:
Kathy Ruffing 2012-07-10 13:27:26 +00:00
parent d423debb4d
commit 96b127254e

View File

@ -226,6 +226,14 @@ namespace Volian.Print.Library
BottomMessage = null; // Only output it once.
}
}
public void DrawBottomMessage(PdfContentByte cb)
{
if (BottomMessage != null)
{
BottomMessage.ToPdf(cb, 0, 0, 0);
BottomMessage = null; // Only output it once.
}
}
private void DrawChangeBars(PdfContentByte cb)
{
foreach (vlnChangeBar vcb in MyChangeBars)