When I print something from my Metro application, the document name that ends up in the print queue is "Document target printing job" and I can't find anything that is able to change this. The closest thing that I think is supposed to change it
is PrintTaskInitializingRequest.InitializePrintTask(source, title), and I use it as such:
var printContent = document.getHTMLPrintDocument();
printTask = event.request.initializePrintTask(printContent, "Calendar");
But it still ends up with the name "Document target printing job". Even the provided Air Craft application results in the same document name.
Is there any way to change the name?
Thanks