Package com.solibri.smc.api.ui
Interface UIContainerVertical
- All Superinterfaces:
Iterable<UIComponent>,UIComponent,UIContainer
Container that contains UI components in vertical layout. Components are added to the bottom of the container.
- Since:
- 9.10.2
-
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic UIContainerVerticalcreate()Returns a vertical UI container without title and border.static UIContainerVerticalReturns a vertical UI container with title and no border.static UIContainerVerticalcreate(String title, BorderType borderType) Returns a vertical UI container with title and border.Methods inherited from interface java.lang.Iterable
forEach, iterator, spliteratorMethods inherited from interface com.solibri.smc.api.ui.UIComponent
getEnabler, getInvisibleWhenDisabled, setEnabler, setInvisibleWhenDisabledMethods inherited from interface com.solibri.smc.api.ui.UIContainer
addComponent, getBorderType, getTitle, setBorderType, setTitle
-
Method Details
-
create
Returns a vertical UI container without title and border.- Returns:
- a vertical UI container without title and border
- Since:
- 9.10.2
-
create
Returns a vertical UI container with title and no border.- Parameters:
title- the title- Returns:
- a vertical UI container with title and no border
- Since:
- 9.10.2
-
create
Returns a vertical UI container with title and border.- Parameters:
title- the titleborderType- the border type- Returns:
- a vertical UI container with title and border
- Since:
- 9.10.2
-