Added continuous action footnote (pagelist item) to placekeeper sections

This commit is contained in:
John Jenko 2014-05-19 15:08:48 +00:00
parent 86cac2ae13
commit b6cf059c5d

View File

@ -70,19 +70,19 @@ namespace fmtxml
// EOP Placekeeper // EOP Placekeeper
dcstyles.DcStyles[12].TopMargin = 138; dcstyles.DcStyles[12].TopMargin = 138;
dcstyles.DcStyles[12].PageLength = 629; dcstyles.DcStyles[12].PageLength = 609;
dcstyles.DcStyles[12].LeftMargin = 106; dcstyles.DcStyles[12].LeftMargin = 106;
// AOP Placekeeper // AOP Placekeeper
dcstyles.DcStyles[13].TopMargin = 138; dcstyles.DcStyles[13].TopMargin = 138;
dcstyles.DcStyles[13].PageLength = 629; dcstyles.DcStyles[13].PageLength = 609;
dcstyles.DcStyles[13].LeftMargin = 106; dcstyles.DcStyles[13].LeftMargin = 106;
} }
private void AddBGEEOPDOC_Y00(ref DocStyles dcstyles) private void AddBGEEOPDOC_Y00(ref DocStyles dcstyles)
{ {
// AOP PlaceKeeper w/ Initials // AOP PlaceKeeper w/ Initials
dcstyles.DcStyles[2].TopMargin = 138; dcstyles.DcStyles[2].TopMargin = 138;
dcstyles.DcStyles[2].PageLength = 629; dcstyles.DcStyles[2].PageLength = 609;
dcstyles.DcStyles[2].LeftMargin = 76; dcstyles.DcStyles[2].LeftMargin = 76;
} }
private void AddBGEEOPPage(ref PageStyles pgstyles) private void AddBGEEOPPage(ref PageStyles pgstyles)
@ -116,6 +116,17 @@ namespace fmtxml
pgstyles.PgStyles[9].Items[4].Col = 463; // Page {PAGE} of {OF} pgstyles.PgStyles[9].Items[4].Col = 463; // Page {PAGE} of {OF}
pgstyles.PgStyles[9].Items[5].Col = 227; // PLACEKEEPER pgstyles.PgStyles[9].Items[5].Col = 227; // PLACEKEEPER
Array.Resize<PSItem>(ref pgstyles.PgStyles[9].Items, 7);
pgstyles.PgStyles[9].Items[6].Token = "NOTE: Continuously applicable steps are designated with a \"C\" in the DONE column."; // Continuous foot note
pgstyles.PgStyles[9].Items[6].Row = 750; // Continuous foot note
pgstyles.PgStyles[9].Items[6].Col = 227; // Continuous foot note
pgstyles.PgStyles[9].Items[6].Justify = "PSCenter"; // Continuous foot note
pgstyles.PgStyles[9].Items[6].Style = new VE_Font();
pgstyles.PgStyles[9].Items[6].Style.FontFamily = "Arial";
pgstyles.PgStyles[9].Items[6].Style.FontSize = "10";
pgstyles.PgStyles[9].Items[6].Style.FontStyle = "None";
pgstyles.PgStyles[9].Items[6].Style.CPI = "12";
pgstyles.PgStyles[10].Items[2].Col = 474; pgstyles.PgStyles[10].Items[2].Col = 474;
pgstyles.PgStyles[10].Items[3].Col = 474; pgstyles.PgStyles[10].Items[3].Col = 474;
pgstyles.PgStyles[11].Items[2].Col = 480; pgstyles.PgStyles[11].Items[2].Col = 480;
@ -132,6 +143,18 @@ namespace fmtxml
pgstyles.PgStyles[14].Items[4].Col = 227; // SECTIONLEVELNUMBER pgstyles.PgStyles[14].Items[4].Col = 227; // SECTIONLEVELNUMBER
pgstyles.PgStyles[14].Items[5].Col = 227; // Page {PAGE} of {OF} pgstyles.PgStyles[14].Items[5].Col = 227; // Page {PAGE} of {OF}
pgstyles.PgStyles[14].Items[6].Col = 227; // PLACEKEEPER pgstyles.PgStyles[14].Items[6].Col = 227; // PLACEKEEPER
Array.Resize<PSItem>(ref pgstyles.PgStyles[14].Items, 8);
pgstyles.PgStyles[14].Items[7].Token = "NOTE: Continuously applicable steps are designated with a \"C\"; in the DONE column."; // Continuous foot note
pgstyles.PgStyles[14].Items[7].Row = 750; // Continuous foot note
pgstyles.PgStyles[14].Items[7].Col = 227; // Continuous foot note
pgstyles.PgStyles[14].Items[7].Justify = "PSCenter"; // Continuous foot note
pgstyles.PgStyles[14].Items[7].Style = new VE_Font();
pgstyles.PgStyles[14].Items[7].Style.FontFamily = "Arial";
pgstyles.PgStyles[14].Items[7].Style.FontSize = "10";
pgstyles.PgStyles[14].Items[7].Style.FontStyle = "None";
pgstyles.PgStyles[14].Items[7].Style.CPI = "12";
} }
private void AddBGEEOPPage_Z00(ref PageStyles pgstyles) private void AddBGEEOPPage_Z00(ref PageStyles pgstyles)
{ {
@ -142,6 +165,17 @@ namespace fmtxml
pgstyles.PgStyles[1].Items[4].Col = 227; // SECTIONLEVELNUMBER pgstyles.PgStyles[1].Items[4].Col = 227; // SECTIONLEVELNUMBER
pgstyles.PgStyles[1].Items[5].Col = 227; // Page {PAGE} of {OF} pgstyles.PgStyles[1].Items[5].Col = 227; // Page {PAGE} of {OF}
pgstyles.PgStyles[1].Items[6].Col = 227; // PLACEKEEPER pgstyles.PgStyles[1].Items[6].Col = 227; // PLACEKEEPER
Array.Resize<PSItem>(ref pgstyles.PgStyles[1].Items, 8);
pgstyles.PgStyles[1].Items[7].Token = "NOTE: Continuously applicable steps are designated with a \"C\"in the DONE column."; // Continuous foot note
pgstyles.PgStyles[1].Items[7].Row = 750; // Continuous foot note
pgstyles.PgStyles[1].Items[7].Col = 227; // Continuous foot note
pgstyles.PgStyles[1].Items[7].Justify = "PSCenter"; // Continuous foot note
pgstyles.PgStyles[1].Items[7].Style = new VE_Font();
pgstyles.PgStyles[1].Items[7].Style.FontFamily = "Arial";
pgstyles.PgStyles[1].Items[7].Style.FontSize = "10";
pgstyles.PgStyles[1].Items[7].Style.FontStyle = "None";
pgstyles.PgStyles[1].Items[7].Style.CPI = "12";
} }
} }
} }