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