gpt4 book ai didi

c# - 如何在 C# 中向 excel 文件添加新行

转载 作者:太空狗 更新时间:2023-10-29 21:02:03 24 4
gpt4 key购买 nike

<分区>

我需要在第一行下方插入一个新行。使用下面的代码,我需要添加什么才能完成?

Excel.Application excelApp = new Excel.Application();
string myPath = @"Data.xlsx";
excelApp.Workbooks.Open(myPath);

// Get Worksheet
Excel.Worksheet worksheet = excelApp.Worksheets[1];
int rowIndex = 2; int colIndex = 2;
for (int i = 0; i < 10; i++)
{
excelApp.Cells[rowIndex, colIndex] = "\r123";
}

excelApp.Visible = false;

谢谢:)

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com