Class JobSettings
As documented on PrinterJob, the JobSettings installed on that job will initially reflect the current default settings for the initially associated printer for that job.
The JobSettings delegate then remains the same for the life of the job, and will have it's member properties updated to be compatible with a change in Printer on the job. For example as a result of a user interaction via a platform's dialog. An incompatible setting will usually cause the setting to revert to the default for the new printer.
Any implicit or explicit updates to settings resulting from the user interaction with dialog will be propagated and visible to the application once the user approves the settings by dismissing the dialog using its "accept" option.
For most printing applications it is likely sufficient to let the user set the desired options and have these propagated to the job. For applications which need them, there are setter and getter methods for the individual options, which are also available as properties, and change in values of settings may be monitored and updated via these properties.
 Not all values of settings are available on all printers. For example
 a printer may not support two-sided printing.
 See the Printer class for how to
 to determine supported settings.
- Since:
- JavaFX 8.0
- 
Property SummaryPropertiesTypePropertyDescriptionfinal ObjectProperty<Collation> Property representing an instance ofCollation.final IntegerPropertyIntegerPropertyrepresenting the number of copies of the job to print.final StringPropertyStringPropertyrepresenting the name of a job.final StringPropertyAStringPropertyrepresenting the name of a filesystem file, to which the platform printer driver should spool the rendered print data.final ObjectProperty<PageLayout> Property representing an instance ofPageLayout.final ObjectPropertyAnObjectPropertywhose value represents the job pages to print as an array of PageRange.final ObjectProperty<PaperSource> Property representing an instance ofPaperSource.final ObjectProperty<PrintColor> Property representing an instance ofPrintColor.final ObjectProperty<PrintQuality> Property representing an instance ofPrintQuality.final ObjectProperty<PrintResolution> Property representing an instance ofPrintResolution.final ObjectProperty<PrintSides> Property representing an instance ofPrintSides.
- 
Method SummaryModifier and TypeMethodDescriptionfinal ObjectProperty<Collation> Property representing an instance ofCollation.final IntegerPropertyIntegerPropertyrepresenting the number of copies of the job to print.final CollationGets the value of thecollationproperty.final intGets the value of thecopiesproperty.final StringGets the value of thejobNameproperty.final StringGets the value of theoutputFileproperty.final PageLayoutGets the value of thepageLayoutproperty.final PageRange[]Gets the value of thepageRangesproperty.final PaperSourceGets the value of thepaperSourceproperty.final PrintColorGets the value of theprintColorproperty.final PrintQualityGets the value of theprintQualityproperty.final PrintResolutionGets the value of theprintResolutionproperty.final PrintSidesGets the value of theprintSidesproperty.final StringPropertyStringPropertyrepresenting the name of a job.final StringPropertyAStringPropertyrepresenting the name of a filesystem file, to which the platform printer driver should spool the rendered print data.final ObjectProperty<PageLayout> Property representing an instance ofPageLayout.final ObjectPropertyAnObjectPropertywhose value represents the job pages to print as an array of PageRange.final ObjectProperty<PaperSource> Property representing an instance ofPaperSource.final ObjectProperty<PrintColor> Property representing an instance ofPrintColor.final ObjectProperty<PrintQuality> Property representing an instance ofPrintQuality.final ObjectProperty<PrintResolution> Property representing an instance ofPrintResolution.final ObjectProperty<PrintSides> Property representing an instance ofPrintSides.final voidsetCollation(Collation collation) Sets the value of thecollationproperty.final voidsetCopies(int nCopies) Sets the value of thecopiesproperty.final voidsetJobName(String name) Sets the value of thejobNameproperty.final voidsetOutputFile(String filePath) Sets the value of theoutputFileproperty.final voidsetPageLayout(PageLayout pageLayout) Sets the value of thepageLayoutproperty.final voidsetPageRanges(PageRange... pages) The range of pages to print as an array of PageRange.final voidsetPaperSource(PaperSource value) Sets the value of thepaperSourceproperty.final voidsetPrintColor(PrintColor color) Sets the value of theprintColorproperty.final voidsetPrintQuality(PrintQuality quality) Sets the value of theprintQualityproperty.final voidsetPrintResolution(PrintResolution resolution) Sets the value of theprintResolutionproperty.final voidsetPrintSides(PrintSides sides) Sets the value of theprintSidesproperty.
- 
Property Details- 
jobNameStringPropertyrepresenting the name of a job.- See Also:
 
- 
outputFileAStringPropertyrepresenting the name of a filesystem file, to which the platform printer driver should spool the rendered print data.Applications can use this to programmatically request print-to-file behavior where the native print system is capable of spooling the output to a filesystem file, rather than the printer device. This is often useful where the printer driver generates a format such as Postscript or PDF, and the application intends to distribute the result instead of printing it, or for some other reason the application does not want physical media (paper) emitted by the printer. The default value is an empty string, which is interpreted as unset, equivalent to null, which means output is sent to the printer. So in order to reset to print to the printer, clear the value of this property by setting it to null or an empty string. Additionally if the application displays a printer dialog which allows the user to specify a file destination, including altering an application specified file destination, the value of this property will reflect that user-specified choice, including clearing it to reset to print to the printer, if the user does so. If the print system does not support print-to-file, then this setting will be ignored. If the specified name specifies a non-existent path, or does not specify a user writable file, when printing the results are platform-dependent. Possible behaviours might include replacement with a default output file location, printing to the printer instead, or a platform printing error. - Default value:
- an empty string
- Since:
- 17
- See Also:
 
- 
copiesIntegerPropertyrepresenting the number of copies of the job to print.- See Also:
 
- 
pageRangesAnObjectPropertywhose value represents the job pages to print as an array of PageRange. A null values mean print all pages. Otherwise it must be a non-overlapping array of PageRange instances ordered in increasing page number. Page numbers start from 1 (one). An empty array is considered equivalent to a null array.An illegal or unsupported (by the printer) set of page ranges will be ignored. Ranges which exceed beyond the number of pages imaged by the job during printing do not cause any error. - See Also:
 
- 
printSidesProperty representing an instance ofPrintSides.- See Also:
 
- 
collationProperty representing an instance ofCollation. Collation determines how sheets are sorted when multiple copies of a document are printed. As such it is only relevant if 2 or more copies of a document with 2 more sheets are printed. A sheet is the physical media, so documents with 2 pages that are printed N-up, or double-sided may still have only one sheet. A collated print job produces documents with sheets of a document sorted in sequence. An uncollated job collects together the multiple copies of the same sheet. Uncollated (false) is the typical default value.- See Also:
 
- 
printColorProperty representing an instance ofPrintColor. If a null value is set it is ignored.- See Also:
 
- 
printQualityProperty representing an instance ofPrintQuality.Note that quality and resolution are overlapping concepts. Therefore a printer may support setting one, or the other but not both. Applications setting these programmatically should query both properties and select appropriately from the supported values. If a printer supports non-standard values, code likely cannot distinguish the printer's interpretation of these values and it is safest to stick to selecting a standard value that matches the requirement. - See Also:
 
- 
printResolutionProperty representing an instance ofPrintResolution. A null value is ignored.Note that quality and resolution are overlapping concepts. Therefore a printer may support setting one, or the other but not both. Applications setting these programmatically should query both properties and select appropriately from the supported values. If a printer supports non-standard values, code likely cannot distinguish the printer's interpretation of these values and it is safest to stick to selecting a standard value that matches the requirement. - See Also:
 
- 
paperSourceProperty representing an instance ofPaperSource. A null value is ignored.- See Also:
 
- 
pageLayoutProperty representing an instance ofPageLayout. Setting a null value is ignored.- See Also:
 
 
- 
- 
Method Details- 
jobNamePropertyStringPropertyrepresenting the name of a job.- Returns:
- the name of a job
- See Also:
 
- 
getJobNameGets the value of thejobNameproperty.- Property description:
- StringPropertyrepresenting the name of a job.
- Returns:
- the value of the jobNameproperty
- See Also:
 
- 
setJobNameSets the value of thejobNameproperty.- Property description:
- StringPropertyrepresenting the name of a job.
- Parameters:
- name- the value for the- jobNameproperty
- See Also:
 
- 
outputFilePropertyAStringPropertyrepresenting the name of a filesystem file, to which the platform printer driver should spool the rendered print data.Applications can use this to programmatically request print-to-file behavior where the native print system is capable of spooling the output to a filesystem file, rather than the printer device. This is often useful where the printer driver generates a format such as Postscript or PDF, and the application intends to distribute the result instead of printing it, or for some other reason the application does not want physical media (paper) emitted by the printer. The default value is an empty string, which is interpreted as unset, equivalent to null, which means output is sent to the printer. So in order to reset to print to the printer, clear the value of this property by setting it to null or an empty string. Additionally if the application displays a printer dialog which allows the user to specify a file destination, including altering an application specified file destination, the value of this property will reflect that user-specified choice, including clearing it to reset to print to the printer, if the user does so. If the print system does not support print-to-file, then this setting will be ignored. If the specified name specifies a non-existent path, or does not specify a user writable file, when printing the results are platform-dependent. Possible behaviours might include replacement with a default output file location, printing to the printer instead, or a platform printing error. - Default value:
- an empty string
- Returns:
- the name of a printer spool file
- Since:
- 17
- See Also:
 
- 
getOutputFileGets the value of theoutputFileproperty.- Property description:
- A StringPropertyrepresenting the name of a filesystem file, to which the platform printer driver should spool the rendered print data.Applications can use this to programmatically request print-to-file behavior where the native print system is capable of spooling the output to a filesystem file, rather than the printer device. This is often useful where the printer driver generates a format such as Postscript or PDF, and the application intends to distribute the result instead of printing it, or for some other reason the application does not want physical media (paper) emitted by the printer. The default value is an empty string, which is interpreted as unset, equivalent to null, which means output is sent to the printer. So in order to reset to print to the printer, clear the value of this property by setting it to null or an empty string. Additionally if the application displays a printer dialog which allows the user to specify a file destination, including altering an application specified file destination, the value of this property will reflect that user-specified choice, including clearing it to reset to print to the printer, if the user does so. If the print system does not support print-to-file, then this setting will be ignored. If the specified name specifies a non-existent path, or does not specify a user writable file, when printing the results are platform-dependent. Possible behaviours might include replacement with a default output file location, printing to the printer instead, or a platform printing error. 
- Default value:
- an empty string
- Returns:
- the value of the outputFileproperty
- Since:
- 17
- See Also:
 
- 
setOutputFileSets the value of theoutputFileproperty.- Property description:
- A StringPropertyrepresenting the name of a filesystem file, to which the platform printer driver should spool the rendered print data.Applications can use this to programmatically request print-to-file behavior where the native print system is capable of spooling the output to a filesystem file, rather than the printer device. This is often useful where the printer driver generates a format such as Postscript or PDF, and the application intends to distribute the result instead of printing it, or for some other reason the application does not want physical media (paper) emitted by the printer. The default value is an empty string, which is interpreted as unset, equivalent to null, which means output is sent to the printer. So in order to reset to print to the printer, clear the value of this property by setting it to null or an empty string. Additionally if the application displays a printer dialog which allows the user to specify a file destination, including altering an application specified file destination, the value of this property will reflect that user-specified choice, including clearing it to reset to print to the printer, if the user does so. If the print system does not support print-to-file, then this setting will be ignored. If the specified name specifies a non-existent path, or does not specify a user writable file, when printing the results are platform-dependent. Possible behaviours might include replacement with a default output file location, printing to the printer instead, or a platform printing error. 
- Default value:
- an empty string
- Parameters:
- filePath- the value for the- outputFileproperty
- Since:
- 17
- See Also:
 
- 
copiesPropertyIntegerPropertyrepresenting the number of copies of the job to print.- Returns:
- the number of copies of the job to print
- See Also:
 
- 
getCopiespublic final int getCopies()Gets the value of thecopiesproperty.- Property description:
- IntegerPropertyrepresenting the number of copies of the job to print.
- Returns:
- the value of the copiesproperty
- See Also:
 
- 
setCopiespublic final void setCopies(int nCopies) Sets the value of thecopiesproperty.- Property description:
- IntegerPropertyrepresenting the number of copies of the job to print.
- Parameters:
- nCopies- the value for the- copiesproperty
- See Also:
 
- 
pageRangesPropertyAnObjectPropertywhose value represents the job pages to print as an array of PageRange. A null values mean print all pages. Otherwise it must be a non-overlapping array of PageRange instances ordered in increasing page number. Page numbers start from 1 (one). An empty array is considered equivalent to a null array.An illegal or unsupported (by the printer) set of page ranges will be ignored. Ranges which exceed beyond the number of pages imaged by the job during printing do not cause any error. - Returns:
- the value presents the job pages to print as an array of PageRange
- See Also:
 
- 
getPageRangesGets the value of thepageRangesproperty.- Property description:
- An ObjectPropertywhose value represents the job pages to print as an array of PageRange. A null values mean print all pages. Otherwise it must be a non-overlapping array of PageRange instances ordered in increasing page number. Page numbers start from 1 (one). An empty array is considered equivalent to a null array.An illegal or unsupported (by the printer) set of page ranges will be ignored. Ranges which exceed beyond the number of pages imaged by the job during printing do not cause any error. 
- Returns:
- the value of the pageRangesproperty
- See Also:
 
- 
setPageRangesThe range of pages to print as an array of PageRange. The use of varargs means the common case of a single range can be auto-boxed.((PageRange[])null)always means all pages however since this is the default it is less likely to be used. SeepageRangesProperty()for more details.- Parameters:
- pages- null or a varargs array as specified above
 
- 
printSidesPropertyProperty representing an instance ofPrintSides.- Returns:
- an instance of PrintSides
- See Also:
 
- 
getPrintSidesGets the value of theprintSidesproperty.- Property description:
- Property representing an instance of PrintSides.
- Returns:
- the value of the printSidesproperty
- See Also:
 
- 
setPrintSidesSets the value of theprintSidesproperty.- Property description:
- Property representing an instance of PrintSides.
- Parameters:
- sides- the value for the- printSidesproperty
- See Also:
 
- 
collationPropertyProperty representing an instance ofCollation. Collation determines how sheets are sorted when multiple copies of a document are printed. As such it is only relevant if 2 or more copies of a document with 2 more sheets are printed. A sheet is the physical media, so documents with 2 pages that are printed N-up, or double-sided may still have only one sheet. A collated print job produces documents with sheets of a document sorted in sequence. An uncollated job collects together the multiple copies of the same sheet. Uncollated (false) is the typical default value.- Returns:
- an instance of Collation
- See Also:
 
- 
getCollationGets the value of thecollationproperty.- Property description:
- Property representing an instance of Collation. Collation determines how sheets are sorted when multiple copies of a document are printed. As such it is only relevant if 2 or more copies of a document with 2 more sheets are printed. A sheet is the physical media, so documents with 2 pages that are printed N-up, or double-sided may still have only one sheet. A collated print job produces documents with sheets of a document sorted in sequence. An uncollated job collects together the multiple copies of the same sheet. Uncollated (false) is the typical default value.
- Returns:
- the value of the collationproperty
- See Also:
 
- 
setCollationSets the value of thecollationproperty.- Property description:
- Property representing an instance of Collation. Collation determines how sheets are sorted when multiple copies of a document are printed. As such it is only relevant if 2 or more copies of a document with 2 more sheets are printed. A sheet is the physical media, so documents with 2 pages that are printed N-up, or double-sided may still have only one sheet. A collated print job produces documents with sheets of a document sorted in sequence. An uncollated job collects together the multiple copies of the same sheet. Uncollated (false) is the typical default value.
- Parameters:
- collation- the value for the- collationproperty
- See Also:
 
- 
printColorPropertyProperty representing an instance ofPrintColor. If a null value is set it is ignored.- Returns:
- an instance of PrintColor
- See Also:
 
- 
getPrintColorGets the value of theprintColorproperty.- Property description:
- Property representing an instance of PrintColor. If a null value is set it is ignored.
- Returns:
- the value of the printColorproperty
- See Also:
 
- 
setPrintColorSets the value of theprintColorproperty.- Property description:
- Property representing an instance of PrintColor. If a null value is set it is ignored.
- Parameters:
- color- the value for the- printColorproperty
- See Also:
 
- 
printQualityPropertyProperty representing an instance ofPrintQuality.Note that quality and resolution are overlapping concepts. Therefore a printer may support setting one, or the other but not both. Applications setting these programmatically should query both properties and select appropriately from the supported values. If a printer supports non-standard values, code likely cannot distinguish the printer's interpretation of these values and it is safest to stick to selecting a standard value that matches the requirement. - Returns:
- an instance of PrintQuality
- See Also:
 
- 
getPrintQualityGets the value of theprintQualityproperty.- Property description:
- Property representing an instance of PrintQuality.Note that quality and resolution are overlapping concepts. Therefore a printer may support setting one, or the other but not both. Applications setting these programmatically should query both properties and select appropriately from the supported values. If a printer supports non-standard values, code likely cannot distinguish the printer's interpretation of these values and it is safest to stick to selecting a standard value that matches the requirement. 
- Returns:
- the value of the printQualityproperty
- See Also:
 
- 
setPrintQualitySets the value of theprintQualityproperty.- Property description:
- Property representing an instance of PrintQuality.Note that quality and resolution are overlapping concepts. Therefore a printer may support setting one, or the other but not both. Applications setting these programmatically should query both properties and select appropriately from the supported values. If a printer supports non-standard values, code likely cannot distinguish the printer's interpretation of these values and it is safest to stick to selecting a standard value that matches the requirement. 
- Parameters:
- quality- the value for the- printQualityproperty
- See Also:
 
- 
printResolutionPropertyProperty representing an instance ofPrintResolution. A null value is ignored.Note that quality and resolution are overlapping concepts. Therefore a printer may support setting one, or the other but not both. Applications setting these programmatically should query both properties and select appropriately from the supported values. If a printer supports non-standard values, code likely cannot distinguish the printer's interpretation of these values and it is safest to stick to selecting a standard value that matches the requirement. - Returns:
- an instance of PrintResolution
- See Also:
 
- 
getPrintResolutionGets the value of theprintResolutionproperty.- Property description:
- Property representing an instance of PrintResolution. A null value is ignored.Note that quality and resolution are overlapping concepts. Therefore a printer may support setting one, or the other but not both. Applications setting these programmatically should query both properties and select appropriately from the supported values. If a printer supports non-standard values, code likely cannot distinguish the printer's interpretation of these values and it is safest to stick to selecting a standard value that matches the requirement. 
- Returns:
- the value of the printResolutionproperty
- See Also:
 
- 
setPrintResolutionSets the value of theprintResolutionproperty.- Property description:
- Property representing an instance of PrintResolution. A null value is ignored.Note that quality and resolution are overlapping concepts. Therefore a printer may support setting one, or the other but not both. Applications setting these programmatically should query both properties and select appropriately from the supported values. If a printer supports non-standard values, code likely cannot distinguish the printer's interpretation of these values and it is safest to stick to selecting a standard value that matches the requirement. 
- Parameters:
- resolution- the value for the- printResolutionproperty
- See Also:
 
- 
paperSourcePropertyProperty representing an instance ofPaperSource. A null value is ignored.- Returns:
- an instance of PaperSource
- See Also:
 
- 
getPaperSourceGets the value of thepaperSourceproperty.- Property description:
- Property representing an instance of PaperSource. A null value is ignored.
- Returns:
- the value of the paperSourceproperty
- See Also:
 
- 
setPaperSourceSets the value of thepaperSourceproperty.- Property description:
- Property representing an instance of PaperSource. A null value is ignored.
- Parameters:
- value- the value for the- paperSourceproperty
- See Also:
 
- 
pageLayoutPropertyProperty representing an instance ofPageLayout. Setting a null value is ignored.- Returns:
- an instance of PageLayout
- See Also:
 
- 
getPageLayoutGets the value of thepageLayoutproperty.- Property description:
- Property representing an instance of PageLayout. Setting a null value is ignored.
- Returns:
- the value of the pageLayoutproperty
- See Also:
 
- 
setPageLayoutSets the value of thepageLayoutproperty.- Property description:
- Property representing an instance of PageLayout. Setting a null value is ignored.
- Parameters:
- pageLayout- the value for the- pageLayoutproperty
- See Also:
 
 
-