使用 SharePoint 2010 Word Automation Services 转换 Excel 和 PowerPoint

发布于 2024-11-10 15:53:46 字数 441 浏览 3 评论 0原文

有没有办法使用 SharePoint 2010 Word Automation Services 转换 Excel 或 PowerPoint 文件?

目前我们可以使用类似的方法转换Word文件

ConversionJob pdfJob = new ConversionJob("Word Automation Services");
pdfJob.Name = "Mortgage Report";
pdfJob.UserToken = myWebsite.CurrentUser.UserToken;
pdfJob.AddFile(outputWordFilename, outputWordFilename.Replace(".docx", ".pdf"));
pdfJob.Start();

或者它是一种将Excel或PowerPoint转换为Word的方法,并使用相同的代码?

Is there a way to convert Excel or PowerPoint Files with SharePoint 2010 Word Automation Services?

Currently we can convert word files using something like this

ConversionJob pdfJob = new ConversionJob("Word Automation Services");
pdfJob.Name = "Mortgage Report";
pdfJob.UserToken = myWebsite.CurrentUser.UserToken;
pdfJob.AddFile(outputWordFilename, outputWordFilename.Replace(".docx", ".pdf"));
pdfJob.Start();

Or its a way to convert Excel or PowerPoint to Word, and the use the same code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

错爱 2024-11-17 15:53:46

您想要完成的事情是这样的文档吗?

它可能不 100% 适合你,但我已经在我的一个项目中使用过它。

Is something like this document what you are trying to accomplish?

It may not fit 100% for you, but I had used that for one of my projects.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文