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

32 lines
545 B
C#

using System;
using System.Reflection;
using System.Xml.Serialization;
namespace CPF.ReoGrid.XML
{
[Obfuscation(Feature = "renaming", Exclude = true)]
public class RGXmlRowHead
{
[XmlAttribute]
public int row;
[XmlAttribute]
public ushort height;
[XmlAttribute("last-height")]
public string lastHeight;
[XmlAttribute("auto-height")]
public string autoHeight;
[XmlElement("style")]
public RGXmlCellStyle style;
[XmlAttribute]
public string text;
[XmlAttribute("text-color")]
public string textColor;
}
}