Example #1
0
 public void ReadFrom(Stream is1)
 {
     try
     {
         SingleXmlCellsDocument doc = SingleXmlCellsDocument.Parse(is1);
         SingleXMLCells = doc.GetSingleXmlCells();
     }
     catch (XmlException e)
     {
         throw new IOException(e.Message);
     }
 }
 public void SetSingleXmlCells(CT_SingleXmlCells cells)
 {
     this.cells = cells;
 }
 public SingleXmlCellsDocument(CT_SingleXmlCells cells)
 {
     this.cells = cells;
 }
Example #4
0
        public SingleXmlCells()
            : base()
        {

            SingleXMLCells = new CT_SingleXmlCells();
        }
Example #5
0
 public void SetSingleXmlCells(CT_SingleXmlCells cells)
 {
     this.cells = cells;
 }
Example #6
0
        public static SingleXmlCellsDocument Parse(Stream stream)
        {
            CT_SingleXmlCells obj = (CT_SingleXmlCells)serializer.Deserialize(stream);

            return(new SingleXmlCellsDocument(obj));
        }
Example #7
0
 public SingleXmlCellsDocument(CT_SingleXmlCells cells)
 {
     this.cells = cells;
 }