Java JList VERTICAL_WRAP
Syntax
JList.VERTICAL_WRAP has the following syntax.
public static final int VERTICAL_WRAP
Example
In the following code shows how to use JList.VERTICAL_WRAP field.
//from w w w . ja va2 s . c o m
import javax.swing.JList;
import javax.swing.JScrollPane;
public class Main {
public static void main(String[] argv) throws Exception {
String[] items = { "A", "B", "C", "D" };
JList list = new JList(items);
JScrollPane scrollingList = new JScrollPane(list);
// Change orientation to top-to-bottom, left-to-right layout
list.setLayoutOrientation(JList.VERTICAL_WRAP);
}
}
Home »
Java Tutorial »
javax.swing »
Java Tutorial »
javax.swing »