e685. 显示页面格式窗口

The page format dialog allows the user to change the default page format values such as the orientation and paper size.

    PrinterJob pjob = PrinterJob.getPrinterJob();
    
    // Get and change default page format settings if necessary.
    PageFormat pf = pjob.defaultPage();
    pf.setOrientation(PageFormat.LANDSCAPE);
    
    // Show page format dialog with page format settings.
    pf = pjob.pageDialog(pf);

 

Related Examples
posted @ 2018-09-02 21:55  borter  阅读(290)  评论(0编辑  收藏  举报