fixed missing end message if continuous section.
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user