B2020-059 – the 1st AER sub-step was printing on the HLS text when the last table in the RNO was compressed. (Barakah data)

This commit is contained in:
2020-04-24 13:12:19 +00:00
parent 318f68e14a
commit 8d9d19db7d
3 changed files with 24 additions and 6 deletions

View File

@@ -20,6 +20,18 @@ namespace Volian.Print.Library
get { return _TableAdjustment; }
set { _TableAdjustment = value; }
}
private vlnParagraph _AdjustedTable; // B2020-059 - save info of table that was compressed (set in vlnParagraph.cs DrawGrid() and used in RTF2PDF.cs TextAt())
public vlnParagraph AdjustedTable
{
get { return _AdjustedTable; }
set { _AdjustedTable = value; }
}
private float _AdjustedTableYtop;
public float AdjustedTableYtop // B2020-059 - save the Ytop of the compressed table (set in vlnParagraph.cs DrawGrid() and used in RTF2PDF.cs TextAt())
{
get { return _AdjustedTableYtop; }
set { _AdjustedTableYtop = value; }
}
private static readonly log4net.ILog _MyLog = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
private pkParagraphs _MyPlacekeepers = new pkParagraphs();
public pkParagraphs MyPlacekeepers