private void CreateHeadRow(ExcelTable tbl) { var row = new ExcelRow(); foreach (var col in this._colums) { row.InitSell(col.Value.Index - 1, true, col.Value.Title); } tbl.easy_addRow(row); }
public void FullCell(ExcelRow row, object item) { row.InitSell(this._index, false, this._accessor.DynamicInvoke(item) + ""); }