printing

 From:  PaQ
2229.2 In reply to 2229.1 
Not what you're a looking but this can help

CaptureViewToClipboard – this render a larger image of the active viewport and copy it to the clipboard; you can possibly adjust the resolution and the line width

script:var v = moi.ui.getActiveViewport(); if ( v != null ) { moi.view.lineWidth = 4; v.renderToClipboard( 2560, 2560 ); moi.view.lineWidth = 1; }