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