JTabbedPane: remove(Component component) : JTabbedPane « javax.swing « Java by API
- Java by API
- javax.swing
- JTabbedPane
JTabbedPane: remove(Component component)
import javax.swing.JButton;
import javax.swing.JTabbedPane;
public class Main {
public static void main(String[] argv) throws Exception {
JTabbedPane pane = new JTabbedPane();
JButton component = new JButton("button");
// Remove the last tab
pane.remove(pane.getTabCount() - 1);
// Remove the tab with the specified child component
pane.remove(component);
// Remove all the tabs
pane.removeAll();
}
}
Related examples in the same category
| 1. | JTabbedPane.SCROLL_TAB_LAYOUT | | |
| 2. | JTabbedPane: addChangeListener(ChangeListener l) | | |
| 3. | JTabbedPane: addTab(String title, Component component) | | |
| 4. | JTabbedPane: addTab(String title, Icon icon, Component component, String tip) | | |
| 5. | JTabbedPane: getComponentAt(int index) | | |
| 6. | JTabbedPane: getDisabledIconAt(int index) | | |
| 7. | JTabbedPane: getDisplayedMnemonicIndexAt(int tabIndex) | | |
| 8. | JTabbedPane: getIconAt(int index) | | |
| 9. | JTabbedPane: getMnemonicAt(int tabIndex) | | |
| 10. | JTabbedPane: getTitleAt(int index) | | |
| 11. | JTabbedPane: getToolTipTextAt(int index) | | |
| 12. | JTabbedPane: indexOfComponent(Component component) | | |
| 13. | JTabbedPane: indexOfTab(String title) | | |
| 14. | JTabbedPane: insertTab(String title, Icon icon, Component component, String tip, int index) | | |
| 15. | JTabbedPane: isEnabledAt(int index) | | |
| 16. | JTabbedPane: removeAll() | | |
| 17. | JTabbedPane: removeTabAt(int index) | | |
| 18. | JTabbedPane: setBackgroundAt(int index, Color background) | | |
| 19. | JTabbedPane: setDisabledIconAt(int index, Icon disabledIcon) | | |
| 20. | JTabbedPane: setDisplayedMnemonicIndexAt(int tabIndex, int mnemonicIndex) | | |
| 21. | JTabbedPane: setEnabledAt(int index, boolean enabled) | | |
| 22. | JTabbedPane: setForegroundAt(int index, Color foreground) | | |
| 23. | JTabbedPane: setMnemonicAt(int tabIndex, int mnemonic) | | |
| 24. | JTabbedPane: setSelectedIndex(int index) | | |
| 25. | JTabbedPane: setTabComponentAt(int index, Component component) | | |
| 26. | JTabbedPane: setTabLayoutPolicy(int tabLayoutPolicy) | | |
| 27. | JTabbedPane: setTabPlacement(int tabPlacement) | | |
| 28. | JTabbedPane: setToolTipTextAt(int index, String toolTipText) | | |