Question

I am trying to print a WPF FlowDocument to a particular printer, without prompting the user. The printer is a PDF converter.

This works great except that it prints to the default printer:

   PrintDialog pd = new PrintDialog();
   var doc = ((IDocumentPaginatorSource) RTB.Document).DocumentPaginator;
   // I would like to explicitly set the printer to print to here.
   pd.PrintDocument(doc, "Print Document");

In WinForms there is a System.Drawing.Printing.PrinterSettings object on document which has a PrinterName property which can be set to the printer I want, but I don't see that in WPF.

Was it helpful?

Solution

You first need a reference in your project to System.Printing. Then you can use the following code right after you declare your PrintDialog object.

pd.PrintQueue = new PrintQueue(new PrintServer(), "The exact name of my printer");

The PrintQueue is an object that represents the printer and everything else about that print queue.

OTHER TIPS

This worked for me, when I used a shared network printer:

xPrintDialog.PrintQueue = New PrintQueue(New PrintServer("\\computer name"), "printer name")
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top