Support for ‘PaginateOnLowerStepLevel’ pagination flag (for IP2BCK)

IP2BCK: Step Description table’s title (Cont) support and various xoffset & margin fixes
IP2BCK: Support Step Descriptions table’s title (Cont) message
IP2BCK: Implement ‘NoTabAlign’ flag so that tab aligning won’t occur for EquipmentOpt step types
This commit is contained in:
2014-10-03 13:44:46 +00:00
parent 270d5e37d8
commit f9d0c363f7
4 changed files with 59 additions and 4 deletions

View File

@@ -1222,6 +1222,12 @@ namespace Volian.Print.Library
get { return _HLRNO; }
set { _HLRNO = value; }
}
private bool _OldTemplateContMsg = false;
public bool OldTemplateContMsg
{
get { return _OldTemplateContMsg; }
set { _OldTemplateContMsg = value; }
}
/// <summary>
/// </summary>
/// <param name="section"></param>
@@ -1373,6 +1379,12 @@ namespace Volian.Print.Library
}
plstr = SplitEOPNumber(svgGroup, pageItem, eopnum1, token, plstr);
break;
case "{CM:(Cont)}":
if (OldTemplateContMsg)
plstr = plstr.Replace("{CM:(Cont)}", "(Cont)");
else
plstr = plstr.Replace("{CM:(Cont)}", "");
break;
case "{EOPNUM}":
case "[EOPNUM]":
case "{PREDELIMEOPNUM}":