public void AddCell(object value, ExcelCellTypes cellType) { this.cells.Add(new ExcelCell(cellType, value)); }
public ExcelCell(ExcelCellTypes type, object value) { this.Type = type; this.Value = value; }
public ExcelColumnAttribute(string name, ExcelCellTypes type) { this.Name = name; this.Type = type; }