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

48 lines
801 B
C#

using System;
using System.Xml.Serialization;
namespace CPF.ReoGrid.XML
{
public class RGXmlCell
{
[XmlAttribute]
public int row;
[XmlAttribute]
public int col;
[XmlAttribute]
public string colspan;
[XmlAttribute]
public string rowspan;
[XmlText]
public string data;
[XmlElement]
public RGXmlCellFormual formula;
[XmlAttribute("format")]
public string dataFormat;
[XmlElement("format-args")]
public RGXmlCellDataFormatArgs dataFormatArgs;
[XmlElement("style")]
public RGXmlCellStyle style;
[XmlAttribute("body-type")]
public string bodyType;
[XmlAttribute("readonly")]
public string @readonly;
[XmlAttribute("trace-precedents")]
public string tracePrecedents;
[XmlAttribute("trace-dependents")]
public string traceDependents;
}
}