Exemple #1
0
 public Cell(object value, string formatString)
 {
     _value  = value;
     _format = new CellFormat(CellFormatType.General, formatString);
 }
Exemple #2
0
 public Cell(object value, CellFormat format)
 {
     _value  = value;
     _format = format;
 }
Exemple #3
0
 public Cell(object value)
 {
     _value  = value;
     _format = CellFormat.General;
 }