MCPcopy Index your code
hub / github.com/processing/processing / handlePageSetup

Method handlePageSetup

app/src/processing/app/ui/Editor.java:2719–2729  ·  view source on GitHub ↗

Handler for File → Page Setup.

()

Source from the content-addressed store, hash-verified

2717 * Handler for File → Page Setup.
2718 */
2719 public void handlePageSetup() {
2720 //printerJob = null;
2721 if (printerJob == null) {
2722 printerJob = PrinterJob.getPrinterJob();
2723 }
2724 if (pageFormat == null) {
2725 pageFormat = printerJob.defaultPage();
2726 }
2727 pageFormat = printerJob.pageDialog(pageFormat);
2728 //System.out.println("page format is " + pageFormat);
2729 }
2730
2731
2732 /**

Callers 1

actionPerformedMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected