The Win32_PrintJob WMI class has lots of properties. (see: Win32_PrintJob on MSDN)
I have a small .NET application that poles the printing jobs and displays the jobs' information.
The TotalPages
propery gives the amount of pages sent. But that figure DOESN'T take into account the number of copies requested by the user. So, if a user wants to print 5 copies of a two page document, the value of TotalPages
will be 2, not 10.
How can i get the number of copies for a printing job, or get the total amount of pages to be printed (number of copies times number of pages in the job)?
Thanks