码迷,mamicode.com
首页 > 其他好文 > 详细

e683. 设置打印的方向

时间:2018-09-02 23:42:51      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:color   打印   class   lsp   cells   table   center   mat   example   

  PrinterJob pjob = PrinterJob.getPrinterJob();
    PageFormat pf = pjob.defaultPage();
    
    if (portrait) {
        pf.setOrientation(PageFormat.PORTRAIT);
    } else {
        pf.setOrientation(PageFormat.LANDSCAPE);
    }
    
    pjob.setPrintable(printable, pf);
    try {
        pjob.print();
    } catch (PrinterException e) {
    }

 

Related Examples

e683. 设置打印的方向

标签:color   打印   class   lsp   cells   table   center   mat   example   

原文地址:https://www.cnblogs.com/borter/p/9575619.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!