
PDFFaxJob::getClosed
Description
In BBj 10.0 and higher, this method indicates whether a fax job is closed.
Syntax
Access |
Return Value |
Method |
---|---|---|
public |
BBjNumber |
getClosed() |
Parameters
None.
Return Value
None.
Remarks
Zero indicates the fax job is still open. Non-zero indicates the fax is closed. .
Example
use ::LocalFax.src::PDFFaxJob declare PDFFaxJob fax! document!="C:\users\someuser\doc.pdf” phoneNo!="5551212" fax!=new PDFFaxJob() rem Add a document to the fax job. fax!.addDocument(document!) fax!.addPhoneNumber(phoneNo!) fax!.send() print “Before closing the value of isClosed() is “,fax!.isClosed() fax!.close() print “After closing the value of isClosed() is “,fax!.isClosed() |
See Also
Note:
The BASIS Fax Utility uses a third-party library from Java4Less called RFax. Any faxes sent will include a banner stating that the RFax library is being used until the customer obtains a license from Java4Less here.