Example usage for Java com.vaadin.ui HorizontalSplitPanel fields, constructors, methods, implement or subclass
The text is from its open source code.
HorizontalSplitPanel() Creates an empty horizontal split panel. | |
HorizontalSplitPanel(Component firstComponent, Component secondComponent) Creates a horizontal split panel containing the given components. |
void | addComponent(Component c) Add a component into this container. |
Registration | addSplitterClickListener(SplitterClickListener listener) |
void | addStyleName(String style) |
float | getSplitPosition() Returns the current position of the splitter, in #getSplitPositionUnit() units. |
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 | setMaxSplitPosition(float pos, Unit unit) Sets the maximum split position to the given position and unit. |
void | setMinSplitPosition(float pos, Unit unit) Sets the minimum split position to the given position and unit. |
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 | setSplitPosition(float pos, Unit unit, boolean reverse) Moves the position of the splitter with given position and unit. |
void | setStyleName(String style) |
void | setWidth(String width) |
void | setWidth(float width, Unit unit) |