Beispiel #1
0
        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);
        }
Beispiel #2
0
 public void FullCell(ExcelRow row, object item)
 {
     row.InitSell(this._index, false, this._accessor.DynamicInvoke(item) + "");
 }