作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的任务是创建将 Excel 文件导出为 PDF 的功能,并要求所有列都必须适合 1 页。
这是我用来将excel文件转换为pdf的代码。
xlApp = new Excel.Application();
xlWb = xlApp.Workbooks.Open(textBox3.Text);
xlWb.ExportAsFixedFormat(Excel.XlFixedFormatType.xlTypePDF, Path.GetDirectoryName(textBox3.Text)+ "\\" + Path.GetFileNameWithoutExtension(textBox3.Text) + ".pdf");
最佳答案
所以在我做了一些研究之后,这是设置页面方向的方法,你可以适应页面
//setup your page orientation + fit to pages
xlWs2.PageSetup.Orientation = Excel.XlPageOrientation.xlLandscape;
xlWs2.PageSetup.Zoom = false;
xlWs2.PageSetup.FitToPagesWide = 1;
xlWs2.PageSetup.FitToPagesTall = false;
//this is how to save as PDF
xlWb2.ExportAsFixedFormat(Excel.XlFixedFormatType.xlTypePDF,Path.GetDirectoryName(textBox3.Text) + "\\" + Path.GetFileNameWithoutExtension(textBox3.Text) + ".pdf");
关于c# - 如何将 Excel 文件另存为 PDF 并适合页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58179367/
我有 json 数据: { "products": [ { "productId" : 0, "productImg" : "../img/product-ph
我是一名优秀的程序员,十分优秀!