コード例 #1
0
 //True, если значение ячейки x,y - пустое
 public static bool CellIsEmpty(this Worksheet page, int y, int x)
 {
     try { return(((Range)page.Cells[y, x]).Value2 == null || page.CellValue(y, x).IsEmpty()); }
     catch { }
     return(true);
 }