Example usage for Java com.vaadin.ui VerticalSplitPanel fields, constructors, methods, implement or subclass
The text is from its open source code.
VerticalSplitPanel() | |
VerticalSplitPanel(Component firstComponent, Component secondComponent) Creates a horizontal split panel containing the given components. |
void | addComponent(Component c) Add a component into this container. |
void | addStyleName(String style) |
float | getSplitPosition() Returns the current position of the splitter, in #getSplitPositionUnit() units. |
Unit | getSplitPositionUnit() Returns the unit of position of the splitter. |
void | setCaption(String caption) |
void | setFirstComponent(Component c) Sets the first component of this split panel. |
void | setHeight(String height) |
void | setHeight(float height, Unit unit) |
void | setLocked(boolean locked) Lock the SplitPanels position, disabling the user from dragging the split handle. |
void | setSecondComponent(Component c) Sets the second component of this split panel. |
void | setSizeFull() |
void | setSplitPosition(float pos, boolean reverse) Moves the position of the splitter. |
void | setSplitPosition(float pos) Moves the position of the splitter. |
void | setStyleName(String style) |
void | setWidth(String width) |