|
» Component » Label » Button » CheckBox » ComboBox » TextField » PasswordField » TextArea » TabbedPane » Panel » Desktop » Dialog » SpinBox » ProgressBar » Slider » SplitPane » List » Table » Tree » Separator » MenuBar
|
|
|
SplitPane
SplitPane is used to divide two components. The following one has two
text-areas aligned top to bottom.
<splitpane orientation="vertical" divider="24">
<textarea text="Top"/>
<textarea text="Bottom" />
</splitpane> |
Parameters
Name | Type | Default | Description | orientation | choice | horizontal |
The splitpane orientation is either horizontal or vertical.
By default the splitter is divided horizontally.
|
divider | integer | -1 |
The location of the divider. A negative value implies the divider should be
reset to a value that attempts to honor the preferred size of the two components.
|
name, enabled, visible, tooltip, width, height, colspan, rowspan,
weightx, weighty, halign, and valign parameters are similar to component
|
Keyboard-actions
Operation | Action | F8 | Gives focus to splitter bar |
Left arrow, up arrow | Steps location of splitter bar in left/top direction |
Right arrow, down arrow | Steps location of splitter bar in right/bottom direction |
Home | Moves splitter bar to left/top of splitter pane |
End | Moves splitter bar to right/bottom of splitter pane |
Tab, Shift-Tab | Navigate forward, backward |
|