IADsPrintJob Property: StartTime

Property Name
StartTime

Property Type
Date

Description
Gets and sets the earliest time the print job should be printed.

Example

Dim PrintQueueOperations As IADsPrintQueueOperations
Dim PrintJob As IADsPrintJob
'Get the IADsPrintQueueOperations interface. In the path HP DeskJet '500C is the print queue.
Set PrintQueueOperations = GetObject ("NTDS://MSFT/MOON/HP DeskJet 500C")
'Enumerate individual print jobs and set the
'StartTime property
For each PrintJob In PrintQueueOperations.PrintJobs
 PrintJob.StartTime = "12:30:00"
 'Commit the changes
  PrintJob.SetInfo
Next PrintJob

 

See Also