TabSize and JTextPane
Hello,
I try to change the tab' size of my JTextPane but it does'nt work. In the JTextArea class there is the setTabSize method but not in JTextPane class.
So i tried to do :
JTextPane p =new JTextPane();
p.getStyledDocument().putProperty(PlainDocument.tabSizeAttribute,new Integer(size));
but it does'nt work...
help me please ...

