Ce sujet n'a pas encore été évalué - Évaluez ce sujet

PrintQueue.GetJob, méthode

Gets the print job with the specified ID number.

Espace de noms: System.Printing
Assembly : System.Printing (dans system.printing.dll)

public PrintSystemJobInfo GetJob (
	int jobId
)
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

Microsoft .NET Framework 3.0 est pris en charge sur Windows Vista, Microsoft Windows XP SP2 et Windows Server 2003 SP1.

.NET Framework

Prise en charge dans : 3.0
Cela vous a-t-il été utile ?
(1500 caractères restants)

Ajouts de la communauté

AJOUTER
Microsoft réalise une enquête en ligne pour recueillir votre opinion sur le site Web de MSDN. Si vous choisissez d’y participer, cette enquête en ligne vous sera présentée lorsque vous quitterez le site Web de MSDN.

Si vous souhaitez y participer,
© 2013 Microsoft. Tous droits réservés.