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:
@@ -775,8 +775,9 @@ namespace Volian.Print.Library
|
||||
width = secPagePos - adjSecTitlePos - 6;
|
||||
retval = Rtf2Pdf.TextAt(cb, myparagrapht, leftMargin + adjSecTitlePos, yPageStart - yLocation, width, height, "", yBottomMargin);
|
||||
// add a template for the page number:
|
||||
if (lastyLocation != 0 && ((lastyLocation - retval) > vlnPrintObject.SixLinesPerInch))
|
||||
yLocation += (lastyLocation - retval - vlnPrintObject.SixLinesPerInch);
|
||||
float lSpace = (tOfC.TofCLineSpacing == 2) ? 2 * vlnPrintObject.SixLinesPerInch : vlnPrintObject.SixLinesPerInch;
|
||||
if (lastyLocation != 0 && ((lastyLocation - retval) > lSpace))
|
||||
yLocation += (lastyLocation - retval - lSpace);
|
||||
lastyLocation = retval;
|
||||
|
||||
// if the space character is not null & is not a space, the we've got to put out
|
||||
@@ -817,8 +818,8 @@ namespace Volian.Print.Library
|
||||
}
|
||||
else
|
||||
AddTemplateTOCPageCounts(tOfC, yLocation, yPageStartAdj, leftMargin, secPagePos, height, mySection);
|
||||
|
||||
yLocation += vlnPrintObject.SixLinesPerInch;
|
||||
|
||||
yLocation += (tOfC.TofCLineSpacing == 2 ? 2 * vlnPrintObject.SixLinesPerInch : vlnPrintObject.SixLinesPerInch);
|
||||
}
|
||||
yLocation = AddSectionToTOC(tocSection, mySection, tOfC, cb, yPageStart, yLocation);
|
||||
}
|
||||
|
Reference in New Issue
Block a user