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 ...

[446 byte] By [akrobata] at [2007-10-2 9:59:44]
# 1
Swing related questions should be posted in the Swing forum.Tabs work differently in a JTextPane than a JTextArea. Here is my example, from the Swing forum, that might help: http://forum.java.sun.com/thread.jspa?forumID=57&threadID=585006
camickra at 2007-7-17 0:05:01 > top of Java-index,Java Essentials,Java Programming...