Package com.solibri.smc.api.ui
Interface UIContainer
- All Superinterfaces:
- UIComponent
- All Known Subinterfaces:
- UIContainerHorizontal,- UIContainerVertical
Interface for UIComponent containers.
- Since:
- 9.10.2
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddComponent(UIComponent component) Adds a component to this container.Returns the border type of this container.getTitle()Returns the title of this container.voidsetBorderType(BorderType borderType) Sets the border type of this container.voidSets the title of this container.Methods inherited from interface com.solibri.smc.api.ui.UIComponentgetEnabler, setEnabler
- 
Method Details- 
getTitleString getTitle()Returns the title of this container.- Returns:
- the title of this container
- Since:
- 9.10.2
 
- 
setTitleSets the title of this container.- Parameters:
- title- the title for this container
- Since:
- 9.10.2
 
- 
getBorderTypeBorderType getBorderType()Returns the border type of this container.- Returns:
- the border type of this container
- Since:
- 9.10.2
 
- 
setBorderTypeSets the border type of this container.- Parameters:
- borderType- the border type for this container
- Since:
- 9.10.2
 
- 
addComponentAdds a component to this container. The location of the component in the container depends on the layout implementation of the container.- Parameters:
- component- a non-null component that is added to this container
- Since:
- 9.10.2
 
 
-