I have JTextPane from Netbeans designer’s section. I want to add columns and rows on it. However, there is no option for adding columns or row in the property window of JTextPane. Is there another way to do this?
I have JTextPane from Netbeans designer’s section. I want to add columns and rows
Share
JTextPanesupports formatted documents. One format it supports is HTML. Therefore, it is possible to use an HTMLtableto provide tabular data – data in columns and rows.Also consider using a
JTable, which (of course) has inbuilt support for columns and rows.