使用PdfCreator将docx文件打印为pdf

时间:2017-10-07 09:46:52

标签: c# printing

我正在尝试使用PDFCreator将docx文件作为pdf打印在文件中。代码会执行我需要的所有内容,但会显示打印窗口。我正在尝试打印而不显示Pdf创建器窗口。如何才能这样做,如何指定打印位置? 我也不想使用办公自动化,因为我将在服务器上使用该应用程序。

ProcessStartInfo info = new ProcessStartInfo("C:\\Users\\Test1.docx");
info.Verb = "Print";
info.CreateNoWindow = true;
info.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(info);  

0 个答案:

没有答案