如何使用gembox电子表格在excell中复制和插入特定的行
本文关键字:插入 复制 gembox 何使用 电子表格 excell | 更新日期: 2023-09-27 18:01:47
请提供帮助。我使用gembox.spreadsheet库在excel文件的两张表中插入并复制特定的行。但它仍然存在无效论证的问题。
public void InsertCopyData()
{
SpreadsheetInfo.SetLicense("FREE-LIMITED-KEY");
ExcelFile ef = new ExcelFile();
// Loads Excel file.
ef.LoadXls(@"C:'templateExcel'DataTable.xls");
// Selects first and 2nd worksheet.
ExcelWorksheet w1 = ef.Worksheets[0];
ExcelWorksheet w2 = ef.Worksheets[1];
//insert copy file
w1.InsertCopy(w1.Rows["A1"], w2.Rows["A4"]);
//Saves the file in XLS format.
ef.SaveXls(@"C:'templateExcel'Insert DataTable.xls");
}
请注意,GemBox。电子表格可以让您插入工作表、行和/或列。与无效参数一起使用的API用于插入工作表副本,为了插入行副本,请使用以下内容:
// Inserts specified number of copied rows before the current row.
var currentRow = w1.Rows["A1"];
currentRow.InsertCopy(1, w2.Rows["A4"]);
不能这样使用:ef.LoadXls(@"C:'templateExcel'DataTable.xls");
您应该写入以加载现有的Excel文件。
GemBox.Spreadsheet.ExcelFile ef = new GemBox.Spreadsheet.ExcelFile();
ef = GemBox.Spreadsheet.**ExcelFile.Load**("D:''Example.xlsx");
ExcelWorksheet ws = ef.Worksheets["Sheet1"]; (or) ExcelWorksheet ws = ef.Worksheets[0];
// writing data to excel file code...
ws.Cells[0, 0].Value = example_1;
ws.Cells[1, 0].Value = example_2;
ef.Save("D:''Example.xlsx");