diff --git a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs index 1e9f456d..2582d4a1 100644 --- a/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs +++ b/PROMS/Volian.Print.Library/VlnSvgPageHelper.cs @@ -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)