Printer.startJob

Starts a print job and returns true if the job started successfully and false otherwise. <p> This must be the first method called to initiate a print job, followed by any number of startPage/endPage calls, followed by endJob. Calling startPage, endPage, or endJob before startJob will result in undefined behavior. </p>

@param jobName the name of the print job to start @return true if the job started successfully and false otherwise.

@exception SWTException <ul> <li>ERROR_DEVICE_DISPOSED - if the receiver has been disposed</li> </ul>

@see #startPage @see #endPage @see #endJob

class Printer
bool
startJob
(
String jobName
)

Meta