public void deleteRows(int _row1, int _row2, int _workSheet = 1) { int i; ; for (i = _row2; i >= _row1; i--) { this.deleteRow(i, _workSheet); } }