61 lines
1.9 KiB
C#
61 lines
1.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Xml;
|
|
|
|
namespace fmtxml
|
|
{
|
|
public partial class FmtFileToXml
|
|
{
|
|
private void AddMCGfmt(ref FormatData fmtdata) // McGuire
|
|
{
|
|
}
|
|
}
|
|
public partial class FmtToXml
|
|
{
|
|
private void AddMCGPage(ref PageStyles pgstyles)
|
|
{
|
|
// proc steps
|
|
pgstyles.PgStyles[0].Items[2].Token = "PAGE NO.";
|
|
pgstyles.PgStyles[0].Items[5].Style.FontSize = "14";
|
|
pgstyles.PgStyles[0].Items[7].Token = "{PAGE} of {OF}";
|
|
pgstyles.PgStyles[0].Items[10].Token = "Rev. {REV}";
|
|
// proc steps - no header
|
|
pgstyles.PgStyles[1].Items[2].Token = "PAGE NO.";
|
|
pgstyles.PgStyles[1].Items[5].Style.FontSize = "14";
|
|
pgstyles.PgStyles[1].Items[7].Token = "{PAGE} of {OF}";
|
|
pgstyles.PgStyles[1].Items[10].Token = "Rev. {REV}";
|
|
// enclosures
|
|
pgstyles.PgStyles[2].Items[2].Token = "PAGE NO.";
|
|
pgstyles.PgStyles[2].Items[5].Style.FontSize = "14";
|
|
pgstyles.PgStyles[2].Items[7].Token = "{PAGE} of {OF}";
|
|
pgstyles.PgStyles[2].Items[9].Token = "Rev. {REV}";
|
|
// Attachments
|
|
pgstyles.PgStyles[4].Items[2].Token = "PAGE NO.";
|
|
pgstyles.PgStyles[4].Items[5].Style.FontSize = "14";
|
|
pgstyles.PgStyles[4].Items[7].Token = "{PAGE} of {OF}";
|
|
pgstyles.PgStyles[4].Items[9].Token = "Rev. {REV}";
|
|
// Status Tree
|
|
pgstyles.PgStyles[5].Items[2].Token = "PAGE NO.";
|
|
pgstyles.PgStyles[5].Items[5].Style.FontSize = "14";
|
|
pgstyles.PgStyles[5].Items[7].Token = "{PAGE} of {OF}";
|
|
pgstyles.PgStyles[5].Items[9].Token = "Rev. {REV}";
|
|
// Table of contents
|
|
pgstyles.PgStyles[6].Items[2].Token = "PAGE NO.";
|
|
pgstyles.PgStyles[6].Items[5].Style.FontSize = "14";
|
|
pgstyles.PgStyles[6].Items[6].Token = "{ROMANPAGE}";
|
|
pgstyles.PgStyles[6].Items[8].Token = "Rev. {REV}";
|
|
}
|
|
|
|
private void AddMCGDOC(ref DocStyles dcstyles)
|
|
{
|
|
}
|
|
}
|
|
public partial class RtfToSvg
|
|
{
|
|
private void AddMCG(XmlDocument myDoc)
|
|
{
|
|
}
|
|
}
|
|
}
|