예제 #1
0
파일: EditData.cs 프로젝트: Zer0Grav1ty/EDM
 private string GetKeyValue(string key)
 {
     CellInfo list = new CellInfo();
     RowData.TryGetValue(key, out list);
     if(list == null) return "";
     return Convert.ToString(list.Cell.Value2);
 }
예제 #2
0
파일: EditData.cs 프로젝트: Zer0Grav1ty/EDM
 private Excel.Range GetCellInfo(string key)
 {
     CellInfo list = new CellInfo();
     RowData.TryGetValue(key, out list);
     return list.Cell;
 }