Printing Performance

I’m doing the following to BatchPrint… Is this the best method? We have done some testing and the initial thought is that it’s slower, which is surprising to me as the current method opens and closes word.

 foreach (string file in printList)
 {
     DocumentModel document = DocumentModel.Load(@file);

     string printerName = selectedPrinter;

     
     document.Print(printerName);
     
 }

Hi Wayne,

This is the only option to print Word documents with GemBox.Document.

Regards,
Mario