30 lines
1.4 KiB
Markdown
30 lines
1.4 KiB
Markdown
# Tabbed pane
|
|
|
|
* `JTabbedPane()` / `JTabbedPane(int)` / `JTabbedPane(int,int)` : TOP | BOTTOM | LEFT | RIGHT, WRAP_TAB_LAYOUT | SCROLL_TAB_LAYOUT
|
|
|
|
* `addTab(String,Icon,Component,String)` / `addTab(String,Icon,Component)` / `addTab(String,Component)` : 타이틀, 아이콘, 패널, 툴팁
|
|
* `insertTab(String,Icon,Component,String,int)`
|
|
* `removeTab(Component)` / `removeTabAt(int)` / `removeAll()`
|
|
* `getTabLayoutPolicy()` / `setTabLayoutPolicy(int)` : WRAP_TAB_LAYOUT | SCROLL_TAB_LAYOUT
|
|
* `getTabPlacement()` / `setTabPlacement(int)` : TOP | BOTTOM | LEFT | RIGHT
|
|
|
|
* `indexOfComponent(Component)` / `indexOfTab(String)` / `indexOfTab(Icon)`
|
|
* `getSelectedIndex()` / `setSelectedIndex(int)` / `getSelectedComponent()` / `setSelectedComponent(Component)`
|
|
|
|
|
|
* `getComponentAt()` / `setComponentAt(int,Component)`
|
|
* `getTitleAt(int)` / `setTitleAt(int,String)`
|
|
* `getIconAt(int)` / `setIconAt(int,Icon)`
|
|
* `getDisabledIconAt(int)` / `setDisabledIconAt(int,Icon)`
|
|
* `getBackgroundAt(int)` / `setBackgroundAt(int,Color)`
|
|
* `getForegroundAt(int)` / `setForegroundAt(int,Icon)`
|
|
* `isEnabledAt(int)` / `setEnabledAt(int,boolean)`
|
|
* `getMnemonicAt(int)` / `setMnemonicAt(int,int)`
|
|
* `getDisplayedMnemonicIndexAt(int)` / `setDisplayedMnemonicIndexAt(int,int)`
|
|
* `getToolTipTextAt(int)` / `setToolTipTextAt(int,String)`
|
|
|
|
* `getTabComponentAt(int)` / `setTabComponentAt(int,Component)`
|
|
* `indexOfTabComponent(Component)`
|
|
|
|
|