32 lines
545 B
C#
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;
|
|
}
|
|
}
|