PrintQueue::GetPrintJobInfoCollection Method ()
.NET Framework (current version)
Creates a collection that contains a PrintSystemJobInfo object for each job in the queue.
Assembly: System.Printing (in System.Printing.dll)
Return Value
Type: System.Printing::PrintJobInfoCollection^Returns a PrintJobInfoCollection of PrintSystemJobInfo objects. There is one for each job in the queue.
The following example shows how to use this method when performing the same action on every job in a queue.
for each (PrintQueue^ pq in myPrintQueues) { pq->Refresh(); PrintJobInfoCollection^ jobs = pq->GetPrintJobInfoCollection(); for each (PrintSystemJobInfo^ job in jobs) { // Since the user may not be able to articulate which job is problematic, // present information about each job the user has submitted. if (job->Submitter == userName) { atLeastOne = true; jobList = jobList + "\nServer:" + line; jobList = jobList + "\n\tQueue:" + pq->Name; jobList = jobList + "\n\tLocation:" + pq->Location; jobList = jobList + "\n\t\tJob: " + job->JobName + " ID: " + job->JobIdentifier; } } }
.NET Framework
Available since 3.0
Available since 3.0
Show: