|
|
Retruns true if the printer which this job is queued against requires user intervention
[Visual Basic] Public ReadOnly Property UserInterventionRequired As Boolean [C#] public bool UserInterventionRequired {get;} [C++] public: __property bool get_UserInterventionRequired(); [JScript] public function get UserInterventionRequired() : boolean;
Retruns true if the printer which this job is queued against requires user intervention
This may be True if there is a paper jam or a manual page feed is required, for example
[Visual Basic] The following example prints the status of a job to a trace
[Visual Basic]
Public Sub TraceStatus(ByVal pjIn As PrintJob)
With pjIn
Trace.WriteLine("** In Error? " & .InError.ToString)
Trace.WriteLine("** Off Line? " & .Offline.ToString)
Trace.WriteLine("** Out of paper? " & .PaperOut.ToString)
Trace.WriteLine("** User intervention required? " & .UserInterventionRequired.ToString)
End With
End Sub
Namespace: PrinterQueueWatch
Platforms: Windows NT 4.0, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows .NET Server family
PrintJob overview , All PrintJob members