| |
e834. Setting the Location of the Tabs in a JTabbedPane Container
The tabs of a tabbed pane can be placed on one of the four edges of its
container. By default, when a tabbed pane is created, the tabs are
placed on top.
// Create a tabbed pane with the tabs on top
JTabbedPane pane = new JTabbedPane();
// Get current location
int loc = pane.getTabPlacement(); // TOP
// Create a tabbed pane with tabs at a particular location
int location = JTabbedPane.LEFT; // or TOP, BOTTOM, RIGHT
pane = new JTabbedPane(location);
// Change the tab location
pane.setTabPlacement(JTabbedPane.BOTTOM);
e828.
Creating a JTabbedPane Container
e829.
Getting and Setting the Selected Tab in a JTabbedPane Container
e830.
Adding a Tab to a JTabbedPane Container
e831.
Removing a Tab in a JTabbedPane Container
e832.
Moving a Tab in a JTabbedPane Container
e833.
Getting the Tabs in a JTabbedPane Container
e835.
Enabling and Disabling a Tab in a JTabbedPane Container
e836.
Setting the Tool Tip for a Tab in a JTabbedPane Container
e837.
Setting the Color of a Tab in a JTabbedPane Container
e838.
Enabling the Selection of a Tab in a JTabbedPane Container Using a Keystroke
e839.
Enable Scrolling Tabs in a JTabbedPane Container
e840.
Determining When the Selected Tab Changes in a JTabbedPane Container
© 2002 Addison-Wesley.
|