예제 #1
0
 public void AddCell(object value, ExcelCellTypes cellType)
 {
     this.cells.Add(new ExcelCell(cellType, value));
 }
예제 #2
0
 public ExcelCell(ExcelCellTypes type, object value)
 {
     this.Type  = type;
     this.Value = value;
 }
예제 #3
0
 public ExcelColumnAttribute(string name, ExcelCellTypes type)
 {
     this.Name = name;
     this.Type = type;
 }