使用 SharePoint 2010 Word Automation Services 转换 Excel 和 PowerPoint
有没有办法使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要完成的事情是这样的文档吗?
它可能不 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.