如何使用C#实现打印ppt功能
把一个ppt文件用C#程序实现打印了,但是打印时不可以把这个程序打开那些word,excel都能实现就这个ppt不行希望那个高手指点迷经...
把一个ppt文件用C#程序实现打印了,但是打印时不可以把这个程序打开
那些word,excel都 能实现 就这个ppt 不行
希望那个高手指点迷经 展开
那些word,excel都 能实现 就这个ppt 不行
希望那个高手指点迷经 展开
2个回答
2013-04-17
展开全部
powerpoint.Application apcprint = new powerpoint.ApplicationClass();
powerpoint.Presentations presprint = apcprint.Presentations;
powerpoint.Presentation preprint = null;
preprint = presprint.Open("c:\\a.pptx"(PPT所放的地址), officecore.MsoTriState.msoCTrue,
officecore.MsoTriState.msoCTrue, officecore.MsoTriState.msoFalse);
preprint.PrintOptions.PrintInBackground = 0;
preprint.PrintOptions.ActivePrinter = "kyocera.Mita F5-3800 KX";
preprint.PrintOut(1, 4, @"Kyocera.Mita F5-3800
KX",1officecore.MsoTriState.msoFalse);
preprint.Close();
powerpoint.Presentations presprint = apcprint.Presentations;
powerpoint.Presentation preprint = null;
preprint = presprint.Open("c:\\a.pptx"(PPT所放的地址), officecore.MsoTriState.msoCTrue,
officecore.MsoTriState.msoCTrue, officecore.MsoTriState.msoFalse);
preprint.PrintOptions.PrintInBackground = 0;
preprint.PrintOptions.ActivePrinter = "kyocera.Mita F5-3800 KX";
preprint.PrintOut(1, 4, @"Kyocera.Mita F5-3800
KX",1officecore.MsoTriState.msoFalse);
preprint.Close();
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
展开全部
下面的打印方法需要下载引用Spire.Presentation.dll
using Spire.Presentation;
using Spire.Presentation.Converter.Export;
using System.Drawing.Printing;
namespace PrintPPT
{
class Program
{
static void Main(string[] args)
{
//加载需打印的PPT文档
Presentation ppt = new Presentation();
ppt.LoadFromFile("print.pptx");
//初始化PresentationPrintDocument对象,用于打印设置
PresentationPrintDocument document = new PresentationPrintDocument(ppt);
//指定打印机
document.PrinterSettings.PrinterName = "HP LaserJet P1007";
//设置打印页码范围
document.PrinterSettings.PrintRange = PrintRange.SomePages;
document.PrinterSettings.FromPage = 1;
document.PrinterSettings.ToPage = 2;
//设置打印份数
document.PrinterSettings.Copies = 1;
//执行打印
ppt.Print(document);
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询