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