Esempio n. 1
0
 private string GetKeyValue(string key)
 {
     CellInfo list = new CellInfo();
     RowData.TryGetValue(key, out list);
     if(list == null) return "";
     return Convert.ToString(list.Cell.Value2);
 }
Esempio n. 2
0
 private Excel.Range GetCellInfo(string key)
 {
     CellInfo list = new CellInfo();
     RowData.TryGetValue(key, out list);
     return list.Cell;
 }