标签: java jtextpane java-print
我想用自定义边距打印JTextPane的内容。我正在尝试使用Inset,但是它减少了jtextpane中没有纸面的页边距。我的代码如下-
Insets inset = new Insets(0, 0, 0, 5); jTextPane1.setMargin(inset);
如何将纸张页边距从默认尺寸1英寸减少到0? enter image description here