Jobs Property (Read Only) |
Top Previous Next |
Contains a collection of TnbXLPDJobs objects, one for each job in the queue.
Visual Basic Syntax
[TnbXLPDJob =] TnbXLPDQueue.Jobs
Delphi Syntax
[TnbXLPDJob :=] TnbXLPDQueue.Jobs;
Example
Dim Job as TnbXLPDJob ... for i=0 to TnbXLPDQueue.Jobs.Count Job = TnbXLPDQueue.Jobs[i] 'do something with the Job object next
|