Remove Unnecessary debug message
Fixed logic to find external transition when attempting to delete a procedure Turn-on Table Shrinking Generically
This commit is contained in:
@@ -1068,14 +1068,14 @@ namespace Volian.Print.Library
|
||||
case TextAlignEnum.LeftBottom:
|
||||
case TextAlignEnum.RightBottom:
|
||||
hAdjust = Math.Max(0,h - (mult * HContent) )-1;
|
||||
Console.WriteLine("\"Bottom\",{0},{1},{2}", h, HContent, hAdjust);
|
||||
//Console.WriteLine("\"Bottom\",{0},{1},{2}", h, HContent, hAdjust);
|
||||
break;
|
||||
case TextAlignEnum.CenterCenter:
|
||||
case TextAlignEnum.GeneralCenter:
|
||||
case TextAlignEnum.LeftCenter:
|
||||
case TextAlignEnum.RightCenter:
|
||||
hAdjust = Math.Max(0,(h - (mult * HContent)) / 2)-1;
|
||||
Console.WriteLine("\"Middle\",{0},{1},{2}", h, HContent, hAdjust);
|
||||
//Console.WriteLine("\"Middle\",{0},{1},{2}", h, HContent, hAdjust);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
|
@@ -26,7 +26,8 @@ namespace Volian.Print.Library
|
||||
Phase7=64,
|
||||
Phase8=128,
|
||||
Phase9=256,
|
||||
Phase10=512
|
||||
Phase10=512,
|
||||
AllPhases=1+2+4+8+16+32+64+128+256+512
|
||||
}
|
||||
public class Rtf2Pdf
|
||||
{
|
||||
@@ -114,7 +115,7 @@ namespace Volian.Print.Library
|
||||
return (c == ' ');
|
||||
}
|
||||
}
|
||||
private static TableScrunching _AllowTableScrunching = TableScrunching.None; // RHM20150507 Table Scrunch
|
||||
private static TableScrunching _AllowTableScrunching = TableScrunching.AllPhases; // RHM20150507 Table Scrunch
|
||||
public static TableScrunching AllowTableScrunching
|
||||
{
|
||||
get { return Rtf2Pdf._AllowTableScrunching; }
|
||||
|
Reference in New Issue
Block a user