column for cautions/notes

added call to genfmt fix
This commit is contained in:
Kathy Ruffing 2014-01-03 15:52:19 +00:00
parent 6dfd259d42
commit 22ad34c24e
2 changed files with 31 additions and 0 deletions

View File

@ -178,6 +178,9 @@ namespace fmtxml
case "CATADEV.FMT":
AddCATADEVfmt(ref fmtdata);
break;
case "GEN.FMT":
AddGENfmt(ref fmtdata);
break;
}
}

View File

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;
namespace fmtxml
{
public partial class FmtFileToXml
{
private void AddGENfmt(ref FormatData fmtdata) // Catawba
{
fmtdata.SectData.StepSectionData.StpSectLayData.ColT = -3;
}
}
public partial class FmtToXml
{
private void AddGENPage(ref PageStyles pgstyles)
{
}
}
public partial class RtfToSvg
{
private void AddGEN(XmlDocument myDoc)
{
}
}
}