Implement NumberWithLevel flag to create correct tabs in RNO column
add NumberWithLevel format flag Handle double spacing (flag) in Table of Contents Draw double lined box around High Level Steps (only HLS, not substep) Double Lined box; Caution & Notes xoffsets and widths for printing in column (not across page); NumberWithLevel support (xoffsets); Align1StLevSubWHLS (format flag support); XBlankW1stLevSub adds extra line after 1st substep procdesr pagelist include check for dashes in procedure number
This commit is contained in:
@@ -1208,10 +1208,7 @@ namespace Volian.Print.Library
|
||||
ProcDescrList pdl = section.ActiveFormat.PlantFormat.FormatData.PrintData.ProcDescrList;
|
||||
if (pdl != null && pdl.Count > 0)
|
||||
{
|
||||
// the following line is needed for FNP: a checkin needed to be done for Robinson and
|
||||
// did not want to include the commented out lines in this 'case' statement group:
|
||||
//string procnum = section.MyProcedure.MyContent.Number.Replace(@"\u8209?", "-"); // uncomment for FNP
|
||||
string procnum = section.MyProcedure.MyContent.Number;
|
||||
string procnum = section.MyProcedure.MyContent.Number.Replace(@"\u8209?", "-");
|
||||
foreach (ProcDescr pd in pdl)
|
||||
{
|
||||
if (pd.MatchProcNumber != null)
|
||||
@@ -1243,7 +1240,7 @@ namespace Volian.Print.Library
|
||||
ProcDescrList pdl2 = section.ActiveFormat.PlantFormat.FormatData.PrintData.ProcDescrList;
|
||||
if (pdl2 != null && pdl2.Count > 0)
|
||||
{
|
||||
string procnum = section.MyProcedure.MyContent.Number;
|
||||
string procnum = section.MyProcedure.MyContent.Number.Replace(@"\u8209?", "-");
|
||||
foreach (ProcDescr pd in pdl2)
|
||||
{
|
||||
if (pd.MatchProcNumber != null)
|
||||
|
Reference in New Issue
Block a user