PrintQueue.GetJob, méthode
.NET Framework 3.0
Gets the print job with the specified ID number.
Espace de noms: System.Printing
Assembly : System.Printing (dans system.printing.dll)
Assembly : System.Printing (dans system.printing.dll)
public PrintSystemJobInfo GetJob ( int jobId )
public function GetJob ( jobId : int ) : PrintSystemJobInfo
Non applicable.
Paramètres
- jobId
The number of the job in the queue.
Valeur de retour
A PrintSystemJobInfo that specifies the properties of the job and its status.You can also use the PrintSystemJobInfo.Get method for the same purpose.
The following example shows how to use this method when diagnosing a problem with a print job. For the full sample, see Diagnose Problematic Print Job Sample.
foreach (PrintQueue pq in myPrintQueues) { pq.Refresh(); PrintJobInfoCollection jobs = pq.GetPrintJobInfoCollection(); foreach (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; } }// end for each print job }// end for each print queue