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:
@@ -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
|
||||
|
Reference in New Issue
Block a user