fixed missing end message if continuous section.
This commit is contained in:
parent
d423debb4d
commit
96b127254e
@ -226,6 +226,14 @@ namespace Volian.Print.Library
|
|||||||
BottomMessage = null; // Only output it once.
|
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)
|
private void DrawChangeBars(PdfContentByte cb)
|
||||||
{
|
{
|
||||||
foreach (vlnChangeBar vcb in MyChangeBars)
|
foreach (vlnChangeBar vcb in MyChangeBars)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user