2024-03-30
This commit is contained in:
29
doc/18_tabbed_pane.md
Normal file
29
doc/18_tabbed_pane.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# 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)`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user