diff --git a/PROMS/Volian.Print.Library/Grid2Pdf.cs b/PROMS/Volian.Print.Library/Grid2Pdf.cs index ff80c0e9..34d9fb1d 100644 --- a/PROMS/Volian.Print.Library/Grid2Pdf.cs +++ b/PROMS/Volian.Print.Library/Grid2Pdf.cs @@ -987,7 +987,12 @@ public string Path foreach (vlnCell myCell in this) { // B2020-034 - the topPlacementAdjust is used to position the text vertically in the table cells. - int topPlacementAdjust = (myCell.MyPara.Font.Size == 12)? 1 : 3; // for font size of 12 set to one, else set to 3 + // B2020-082 - AEP Production - American Electric Power - D. C. Cook + // / Current (Post FLEX) - U1 NOP NOT [EOPs] - ES-3.3.SProcedure Body.S9..S1..S1..T1. + // Table did not print properly. Cell text was truncated. + int topPlacementAdjust = (myCell.MyPara.Font.Size == 12 && + myCell.MyPara.Font.Familyname != "Courier New" && + myCell.MyPara.Font.Familyname != "VESymbFix") ? 1 : 3; // for font size of 12 set to one, else set to 3 myCell.ToPdf(myColumnText, left, top, topPlacementAdjust); } }