48 lines
801 B
C#
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;
|
|
}
|
|
}
|