gpt4 book ai didi

c# - 使用互操作将 Excel 转为 pdf

转载 作者:行者123 更新时间:2023-11-30 12:08:57 26 4
gpt4 key购买 nike

我正在使用互操作将 excel 文件转换为 pdf。我有一个工作代码。

但在将其保存为 pdf 之前。它会提示一个对话框,要求用户“是否保存对文件的更改”我怎样才能避免这个提示?

保存完成后如何关闭excel?谢谢

public string ExceltoPdf(string excelLocation, string outputLocation)
{
try
{
Microsoft.Office.Interop.Excel.Application app = new Microsoft.Office.Interop.Excel.Application();
app.Visible = false;
Microsoft.Office.Interop.Excel.Workbook wkb = app.Workbooks.Open(excelLocation);
wkb.ExportAsFixedFormat(Microsoft.Office.Interop.Excel.XlFixedFormatType.xlTypePDF, outputLocation);

wkb.Close();
app.Quit();

return outputLocation;

}
catch (Exception ex)
{
Console.WriteLine(ex.StackTrace);
throw ex;
}
}

最佳答案

尝试添加

app.DisplayAlerts = False

在你设置.Visible之后。

关于c# - 使用互操作将 Excel 转为 pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43881196/

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