Added a flag for the box around continuous action substeps

fix for Point Beach continuous action substeps
This commit is contained in:
2014-06-09 18:18:04 +00:00
parent 316aee183a
commit b1cd9ea1a3
3 changed files with 20 additions and 3 deletions

View File

@@ -71,6 +71,7 @@ namespace Volian.Print.Library
const string BoxAsteriskWithSides2 = " *. *.*.*. . . *.*. . *. . "; // ip3
const string BoxAsteriskWithSides3 = "*.*.*.*.*.*.*.*.*.*.*.*"; //byr
const string BoxAsteriskWithSides4 = "*.*.*.*.*.*.*.*. .*. . "; // wep2
const string BoxAsteriskWithSides5 = "*.*.*.*. . .*.*. .*.*.*"; // WEP2 (Point Beach)
const string BoxAsteriskTopBottom = "*.*.*. . . .*.*. .*. . "; // fnp
const string BoxLineTopBottom = "\x2500.\x2500.\x2500. . . .\x2500.\x2500. .\x2500. . "; // fnp
const string BoxAsteriskTopBotton2 = " .*. . . . . . . .*. . "; // Robinson (CPL)
@@ -172,6 +173,7 @@ namespace Volian.Print.Library
case BoxAsteriskWithSides2:
case BoxAsteriskWithSides3:
case BoxAsteriskWithSides4:
case BoxAsteriskWithSides5:
DrawAsteriskTopBottom(cb, yPageStart, yTopMargin, yBottomMargin, ref top, ref bottom, left, MyBox.Font);
DrawAsteriskSide(cb, yPageStart, yTopMargin, yBottomMargin, top, bottom, left, right, MyBox.Font);
break;