Moved Purpose/Symptom page boarder over to right to align with rest of procedure, centered the section titles

This commit is contained in:
John Jenko 2014-07-31 16:05:11 +00:00
parent e08f317eda
commit 55f835915d

View File

@ -16,6 +16,8 @@ namespace fmtxml
fmtdata.ProcData.ChangeBarData.FixedChangeColumn = 91;
fmtdata.ProcData.TitleLength = 53;
fmtdata.ProcData.CheckOffData.RelXLocation = 5;
fmtdata.SectData.StepSectionData.StpSectLayData.WidSTableEdit = "460,204,126";
fmtdata.SectData.StepSectionData.StpSectLayData.WidSTablePrint = "460,204,126";
fmtdata.SectData.SectionNumber.Pos = 0;
fmtdata.SectData.SectionNumber.Just = "PSCenter";
fmtdata.SectData.SectionNumber.Font.FontFamily = "Letter Gothic Tall";
@ -279,7 +281,7 @@ namespace fmtxml
pgstyles.PgStyles[12].Items[4].Style.FontStyle = "None";
pgstyles.PgStyles[12].Items[4].Token = "{PROCTITLE}";
pgstyles.PgStyles[12].Items[5].Col = -23.04F;
pgstyles.PgStyles[12].Items[5].Col = 0;//-23.04F;
pgstyles.PgStyles[12].Items[5].Justify = "PSLeft";
pgstyles.PgStyles[12].Items[5].Row = 60F;
pgstyles.PgStyles[12].Items[5].Style = new VE_Font();
@ -346,7 +348,7 @@ namespace fmtxml
dcstyles.DcStyles[12].LeftMargin = 51.84F;
dcstyles.DcStyles[12].numberingsequence = 1;
dcstyles.DcStyles[12].PageLength = 636;
dcstyles.DcStyles[12].PageWidth = 547.2F;
dcstyles.DcStyles[12].PageWidth = 572.2F; //547.2F;
dcstyles.DcStyles[12].ShowSectionTitles = true;
dcstyles.DcStyles[12].SpecialStepsFoldout = false;
dcstyles.DcStyles[12].TopMargin = 108F;
@ -407,11 +409,14 @@ namespace fmtxml
"<line x1=\"0\" y1=\"29.75\" x2=\"519.3\" y2=\"29.75\" stroke=\"black\" stroke-width=\"0.95\" />" +
"<text x=\"56.65\" y=\"21.25\" font-family=\"Letter Gothic Tall\" font-size=\"10\">ACTION/EXPECTED{sp}RESPONSE</text>" +
"<line x1=\"261.9\" y1=\"4.25\" x2=\"261.9\" y2=\"44.2\" stroke=\"black\" stroke-width=\"0.95\" />" +
//<!--line x1="261.9" y1="673.2" x2="261.9" y2="680.85" stroke="black" stroke-width="0.95" /-->
//<!--line x1="261.9" y1="677.85" x2="261.9" y2="680.85" stroke="black" stroke-width="0.95" /-->
"<text x=\"339.85\" y=\"21.25\" font-family=\"Letter Gothic Tall\" font-size=\"10\">ALTERNATIVE{sp}ACTION</text>" +
"</g></svg>");
myDoc.DocumentElement.ReplaceChild(myDoc.ImportNode(xdNew.DocumentElement.ChildNodes[0], true), myDoc.DocumentElement.ChildNodes[2]);
//B3
xdNew.LoadXml("<svg xmlns=\"http://www.w3.org/2000/svg\"> <g id=\"B3\">" +
"<rect x=\"0\" y=\"4.25\" width=\"519.3\" height=\"677.45\" fill=\"none\" stroke=\"black\" stroke-width=\"0.95\" />" +
"</g></svg>");
myDoc.DocumentElement.ReplaceChild(myDoc.ImportNode(xdNew.DocumentElement.ChildNodes[0], true), myDoc.DocumentElement.ChildNodes[3]);
}
}
}