Is this possible?
I wish I could show you my code, but I don't know where to start. I haven't found a single example on google.
If it is possible, could someone please reference me to a sample?
LstGlossary.setModel(
new javax.swing.AbstractListModel() { String[] strings = { "你好", "哈囉" };
public int getSize() { return strings.length; }
public Object getElementAt(int i) { return strings[i]; }
});
LstGlossary.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
Here's what these two strings look like with vertical text orientation going right to left in Microsoft Word:
Use the
setComponentOrientation
method:From the Javadoc: