SinglePrintJob Property
Applies To
Binder object.
Description
True if all the sections in the binder are printed together, as a unit. False if each section in the binder will be printed as a separate job. Read/write Boolean.
See Also
PrintOut method.
Example
This example opens a Binder file and prints it as a single print job.
Set newbinder = GetObject("C:\Binder2.obd", _
"Office.Binder")
With newbinder
.SinglePrintJob = True
.PrintOut what:=bindPrintVisibleSections, _
Numbering:=bindConsecutivePages
.Close SaveChanges:=True, FileName:="changed.obd"
End With