enum PrintableState in module com::sun::star::view::

(Global Index)

Syntax

enum PrintableState;

Description

specifies the print progress of an XPrintable

printing consists of two abstract phases: collecting the raw data to send to the printer and then sending them (spooling). PrintableState describes which phase is currently progressing or has failed.

Values Summary

JOB_STARTED printing (that is, collecting the data to send to the printer) has begun

JOB_COMPLETED printing has finished, spooling has begun

JOB_SPOOLED spooling has finished successfully. This is the only state that can be considered as "success" for a print job.

JOB_ABORTED printing was aborted (e.g., by the user) while either printing or spooling

JOB_FAILED printing ran into an error

JOB_SPOOLING_FAILED the document could be printed but not spooled

Values Details



JOB_STARTED

Syntax

JOB_STARTED,

Description

printing (that is, collecting the data to send to the printer) has begun


JOB_COMPLETED

Syntax

JOB_COMPLETED,

Description

printing has finished, spooling has begun


JOB_SPOOLED

Syntax

JOB_SPOOLED,

Description

spooling has finished successfully. This is the only state that can be considered as "success" for a print job.


JOB_ABORTED

Syntax

JOB_ABORTED,

Description

printing was aborted (e.g., by the user) while either printing or spooling


JOB_FAILED

Syntax

JOB_FAILED,

Description

printing ran into an error


JOB_SPOOLING_FAILED

Syntax

JOB_SPOOLING_FAILED,

Description

the document could be printed but not spooled

Top of Page