C# - 엑셀 행추가
http://www.devpia.com/Maeul/Contents/Detail.aspx?BoardID=17&MaeulNo=8&no=120182&ref=120182
Excel.Range에 메서드를 확인 하실 수 있습니다.
object Insert(object Shift);
//ex
레인지.Insert(Excel.XlDirection.xlDown);
Export Excel File for C#
http://www.codeproject.com/Articles/248531/Export-Excel-File-for-Csharp
Summarize C# Control Excel Skills
http://www.codeproject.com/Articles/198572/Summarize-C-Control-Excel-Skills
http://hoons.kr/board.aspx?Name=QACSHAP&BoardIdx=33345&Page=1&Mode=2
worksheet.get_Range("A12", "H12").Insert(Excel.XlInsertShiftDirection.xlShiftDown, Type.Missing);
이건 먼지 ??
//Instantiate a Workbook object.
Workbook workbook = new Workbook();
//Load a template file.
workbook.Open("d:\\test\\MyBook.xls");
//Get the first worksheet in the book.
Worksheet sheet = workbook.Worksheets[0];
//Insert 10 rows at row index 2 (insertion starts at 3rd row)
sheet.Cells.InsertRows(2, 10);
//Delete 5 rows now. (8th row - 12th row)
sheet.Cells.DeleteRows(7, 5);
//Save the excel file.
workbook.Save("d:\\test\\out_MyBook.xls");