Esempio n. 1
0
 protected double GetDouble(Cell cell, double def = 0)
 {
     if (cell == null)
     {
         return(def);
     }
     return(TenjinConverts.GetDouble(GetString(cell)));
 }
Esempio n. 2
0
 protected DateTime GetDate(Cell cell)
 {
     return(DateTime.FromOADate(TenjinConverts.GetDouble(GetString(cell))).Date);
 }