Package com.ebasetech.xi.api.controls
Interface HorizontalBoxLayoutCell
- All Superinterfaces:
 LayoutCell
public interface HorizontalBoxLayoutCell extends LayoutCell
The 
HorizontalBoxLayoutCell interface provides the ability to override properties from the parent control's HorizontalBoxLayout;
 - Since:
 - V4.4
 
- 
Method Summary
Modifier and Type Method Description java.lang.StringgetHAlign()Horizontal alignment, overriding the layout cell horizontal alignment from the parentHorizontalBoxLayout.java.lang.StringgetLayoutClass()Layout cell CSS classes, overriding the layout cell CSS classes from the parentHorizontalBoxLayout.java.lang.StringgetLayoutStyle()Layout cell inline CSS style, overriding the layout cell CSS style from the parentHorizontalBoxLayout.java.lang.StringgetVAlign()Vertical alignment, overriding the layout cell vertical alignment from the parentHorizontalBoxLayout.voidsetHAlign(java.lang.String hAlign)Sets horizontal alignment, overriding the layout cell horizontal alignment from the parentHorizontalBoxLayout.voidsetLayoutClass(java.lang.String layoutClass)Sets layout cell CSS classes, overriding the layout cell CSS classes from the parentHorizontalBoxLayout.voidsetLayoutStyle(java.lang.String layoutStyle)Sets layout cell inline CSS style, overriding the layout cell CSS style from the parentHorizontalBoxLayout.voidsetVAlign(java.lang.String vAlign)Sets vertical alignment, overriding the layout cell vertical alignment from the parentHorizontalBoxLayout. 
- 
Method Details
- 
getHAlign
java.lang.String getHAlign()Horizontal alignment, overriding the layout cell horizontal alignment from the parentHorizontalBoxLayout. SeeHorizontalBoxLayout.getCellHAlign()for details.- Since:
 - V4.4
 
 - 
setHAlign
void setHAlign(java.lang.String hAlign)Sets horizontal alignment, overriding the layout cell horizontal alignment from the parentHorizontalBoxLayout. SeeHorizontalBoxLayout.setCellHAlign(String)for details.- Since:
 - V4.4
 
 - 
getVAlign
java.lang.String getVAlign()Vertical alignment, overriding the layout cell vertical alignment from the parentHorizontalBoxLayout. SeeHorizontalBoxLayout.getCellVAlign()for details.- Since:
 - V4.4
 
 - 
setVAlign
void setVAlign(java.lang.String vAlign)Sets vertical alignment, overriding the layout cell vertical alignment from the parentHorizontalBoxLayout. SeeHorizontalBoxLayout.setCellVAlign(String)for details.- Since:
 - V4.4
 
 - 
getLayoutClass
java.lang.String getLayoutClass()Layout cell CSS classes, overriding the layout cell CSS classes from the parentHorizontalBoxLayout. SeeHorizontalBoxLayout.getLayoutClass()for details.- Since:
 - V4.4
 
 - 
setLayoutClass
void setLayoutClass(java.lang.String layoutClass)Sets layout cell CSS classes, overriding the layout cell CSS classes from the parentHorizontalBoxLayout. SeeHorizontalBoxLayout.setLayoutClass(String)for details.- Since:
 - V4.4
 
 - 
getLayoutStyle
java.lang.String getLayoutStyle()Layout cell inline CSS style, overriding the layout cell CSS style from the parentHorizontalBoxLayout. SeeHorizontalBoxLayout.getLayoutStyle()for details.- Since:
 - V4.4
 
 - 
setLayoutStyle
void setLayoutStyle(java.lang.String layoutStyle)Sets layout cell inline CSS style, overriding the layout cell CSS style from the parentHorizontalBoxLayout. SeeHorizontalBoxLayout.setLayoutStyle(String)for details.- Since:
 - V4.4
 
 
 -