38 lines
732 B
C#
38 lines
732 B
C#
using System;
|
|
using System.Reflection;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace CPF.ReoGrid.XML
|
|
{
|
|
[Obfuscation(Feature = "renaming", Exclude = true)]
|
|
public class RGXmlPrintSetting
|
|
{
|
|
[XmlElement("page-break-rows")]
|
|
public string pageBreakRows;
|
|
|
|
[XmlElement("page-break-cols")]
|
|
public string pageBreakCols;
|
|
|
|
[XmlElement("scale-factor")]
|
|
public string scaling;
|
|
|
|
[XmlElement("paper-size")]
|
|
public string paperName;
|
|
|
|
[XmlElement("landscape")]
|
|
public string landscape;
|
|
|
|
[XmlElement("page-order")]
|
|
public string pageOrder;
|
|
|
|
[XmlElement("paper-width")]
|
|
public string paperWidth;
|
|
|
|
[XmlElement("paper-height")]
|
|
public string paperHeight;
|
|
|
|
[XmlElement("margins")]
|
|
public RGXmlMargins margins;
|
|
}
|
|
}
|