Added property ‘BottomIsTable’ for determining that last item with change bar is a table

For Calvert Alarms, include table in continuous change bars
This commit is contained in:
2014-08-27 16:48:35 +00:00
parent 9825ea8ff9
commit 01f078ea4f
2 changed files with 18 additions and 7 deletions

View File

@@ -84,6 +84,12 @@ namespace Volian.Print.Library
{
get {return YChangeBarBottom - YExtendLine; }
}
private bool _BottomIsTable = false;
public bool BottomIsTable
{
get { return _BottomIsTable; }
set { _BottomIsTable = value; }
}
private bool _IsRev;
private bool _MsgAtTop; // flags that message should be drawn at top of change bar
public vlnChangeBar(PdfContentByte cb, vlnParagraph parent, float xoff, float yoff, int msgAlignment, bool isRev, bool msgAtTop)