33 lines
531 B
C#
33 lines
531 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace CPF.ReoGrid.XML
|
|
{
|
|
public class RGXmlColHead
|
|
{
|
|
[XmlAttribute]
|
|
public int col;
|
|
|
|
[XmlAttribute]
|
|
public ushort width;
|
|
|
|
[XmlAttribute("last-width")]
|
|
public string lastWidth;
|
|
|
|
[XmlAttribute("auto-width")]
|
|
public string autoWidth;
|
|
|
|
[XmlElement("style")]
|
|
public RGXmlCellStyle style;
|
|
|
|
[XmlAttribute]
|
|
public string text;
|
|
|
|
[XmlAttribute("text-color")]
|
|
public string textColor;
|
|
|
|
[XmlAttribute("cell-body-type")]
|
|
public string defaultCellBody;
|
|
}
|
|
}
|