IADsPrintJob Property: Size

Property Name
Size

Property Type
Long

Description
It gets the size (in bytes) of the print job.
This property is read-only.

Example

Dim PrintQueueOperations As IADsPrintQueueOperations
Dim PrintJobCollection As IADsCollection
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")
Set PrintJobCollection = PrintQueueOperations.PrintJobs
'Enumerate individual print jobs and print the size property
For each PrintJob In PrintJobCollection
 Debug.Print PrintJob.Size
Next PrintJob

 

See Also