27 lines
621 B
C#
27 lines
621 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Xml;
|
|
|
|
namespace fmtxml
|
|
{
|
|
public partial class FmtFileToXml
|
|
{
|
|
private void AddBGEEOPfmt(ref FormatData fmtdata)
|
|
{
|
|
fmtdata.SectData.StepSectionData.StpSectLayData.ColS = 30;
|
|
fmtdata.SectData.StepSectionData.StpSectLayData.ColRTable = "0,192,126";
|
|
}
|
|
}
|
|
public partial class FmtToXml
|
|
{
|
|
private void AddBGEEOPDOC(ref DocStyles dcstyles)
|
|
{
|
|
dcstyles.DcStyles[2].PageWidth = 552;
|
|
dcstyles.DcStyles[2].CenterLineX = 240;
|
|
dcstyles.DcStyles[2].CenterLineYTop = 647;
|
|
dcstyles.DcStyles[2].CenterLineYBottom = 24;
|
|
}
|
|
}
|
|
}
|