CPF/CPF.ReoGrid/XML/RGXmlWorksheetSetting.cs
2024-06-24 10:15:59 +08:00

47 lines
996 B
C#

using System;
using System.Reflection;
using System.Xml.Serialization;
namespace CPF.ReoGrid.XML
{
[Obfuscation(Feature = "renaming", Exclude = true)]
public class RGXmlWorksheetSetting
{
[XmlElement("show-grid")]
public string showGrid;
[XmlElement("show-page-break")]
public string showPageBreakes;
[XmlElement("show-row-header")]
public string showRowHeader;
[XmlElement("show-col-header")]
public string showColHeader;
[XmlElement("show-h-scrollbar")]
public string showHScrollBar;
[XmlElement("show-v-scrollbar")]
public string showVScrollBar;
[XmlElement("selection-mode")]
public string selectionMode;
[XmlElement("selection-style")]
public string selectionStyle;
[XmlElement("readonly")]
public string @readonly;
[XmlElement("allow-adjust-row-height")]
public string allowAdjustRowHeight;
[XmlElement("allow-adjust-column-width")]
public string allowAdjustColumnWidth;
[XmlAttribute("meta")]
public string metaValue;
}
}