Added Bottom continue message margin for RNO column

Various format adjustments: single column page length & width; dual column margins for continue message; procedure step subsections page width & centerline definitions;  pagelist procedure description location on dual column pages; EOP Num location on cover page; EOP num, rev & page num on proc step subsections page
This commit is contained in:
2014-04-16 15:15:27 +00:00
parent 746db18ec2
commit a26d292c6a
3 changed files with 25 additions and 1 deletions

View File

@@ -83,6 +83,7 @@ public struct DocStyle
// as part of top continue message.
public float CTMargin; // Margin for top message
public float CBMargin; // Margin for bottom message
public float CBMarginR; // Margin for bottom message RNO column - Added for BGE
public short CBLoc; // 0 - place continue string at end of text
// 1 - between end of text & bottom of page
// 2 - place at bottom of page
@@ -1046,6 +1047,7 @@ namespace fmtxml
dc.ContStyle = new VE_Font(tmpstyle);
dc.CTMargin = ColToPoints(dc.CTMargin, tmpstyle);
dc.CBMargin = ColToPoints(dc.CBMargin, tmpstyle);
dc.CBMarginR = 0;
dc.EndFlag = brFmt.ReadInt16();
dc.EndStyle = LoadVE_Font();
dc.UseCheckOffs = UseCheckOffsIn(fname.Substring(0, fname.Length - 4), dc.oldtonew);