Limit Calvert Alarm logic for Condition/Response to only be run for SpecialCaseCalvertAlarm format flag.

Added debug logic for TextAt counter.
This commit is contained in:
Rich
2014-08-18 18:38:39 +00:00
parent 35bed5b381
commit dec6a46080
2 changed files with 18 additions and 10 deletions

View File

@@ -81,7 +81,12 @@ namespace Volian.Print.Library
}
private static int NextTextAtCounter
{
get { return ++TextAtCounter; }
get
{
int retval = ++TextAtCounter;
//if (InList(retval, 461)) Console.WriteLine("TextAt {0}", retval);
return retval;
}
}
public static float TextAt(PdfContentByte cb, Paragraph iParagraph, float x, float y, float width, float height, string debugText, float yBottomMargin)
{