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;

Further documentation.

Since:
V4.4

Method Summary
 java.lang.String getHAlign()
          Horizontal alignment, overriding the layout cell horizontal alignment from the parent HorizontalBoxLayout.
 java.lang.String getLayoutClass()
          Layout cell CSS classes, overriding the layout cell CSS classes from the parent HorizontalBoxLayout.
 java.lang.String getLayoutStyle()
          Layout cell inline CSS style, overriding the layout cell CSS style from the parent HorizontalBoxLayout.
 java.lang.String getVAlign()
          Vertical alignment, overriding the layout cell vertical alignment from the parent HorizontalBoxLayout.
 void setHAlign(java.lang.String hAlign)
          Sets horizontal alignment, overriding the layout cell horizontal alignment from the parent HorizontalBoxLayout.
 void setLayoutClass(java.lang.String layoutClass)
          Sets layout cell CSS classes, overriding the layout cell CSS classes from the parent HorizontalBoxLayout.
 void setLayoutStyle(java.lang.String layoutStyle)
          Sets layout cell inline CSS style, overriding the layout cell CSS style from the parent HorizontalBoxLayout.
 void setVAlign(java.lang.String vAlign)
          Sets vertical alignment, overriding the layout cell vertical alignment from the parent HorizontalBoxLayout.
 

Method Detail

getHAlign

java.lang.String getHAlign()
Horizontal alignment, overriding the layout cell horizontal alignment from the parent HorizontalBoxLayout. See HorizontalBoxLayout.getCellHAlign() for details.

Further documentation.

Since:
V4.4

setHAlign

void setHAlign(java.lang.String hAlign)
Sets horizontal alignment, overriding the layout cell horizontal alignment from the parent HorizontalBoxLayout. See HorizontalBoxLayout.setCellHAlign(String) for details.

Further documentation.

Since:
V4.4

getVAlign

java.lang.String getVAlign()
Vertical alignment, overriding the layout cell vertical alignment from the parent HorizontalBoxLayout. See HorizontalBoxLayout.getCellVAlign() for details.

Further documentation.

Since:
V4.4

setVAlign

void setVAlign(java.lang.String vAlign)
Sets vertical alignment, overriding the layout cell vertical alignment from the parent HorizontalBoxLayout. See HorizontalBoxLayout.setCellVAlign(String) for details.

Further documentation.

Since:
V4.4

getLayoutClass

java.lang.String getLayoutClass()
Layout cell CSS classes, overriding the layout cell CSS classes from the parent HorizontalBoxLayout. See HorizontalBoxLayout.getLayoutClass() for details.

Further documentation.

Since:
V4.4

setLayoutClass

void setLayoutClass(java.lang.String layoutClass)
Sets layout cell CSS classes, overriding the layout cell CSS classes from the parent HorizontalBoxLayout. See HorizontalBoxLayout.setLayoutClass(String) for details.

Further documentation.

Since:
V4.4

getLayoutStyle

java.lang.String getLayoutStyle()
Layout cell inline CSS style, overriding the layout cell CSS style from the parent HorizontalBoxLayout. See HorizontalBoxLayout.getLayoutStyle() for details.

Further documentation.

Since:
V4.4

setLayoutStyle

void setLayoutStyle(java.lang.String layoutStyle)
Sets layout cell inline CSS style, overriding the layout cell CSS style from the parent HorizontalBoxLayout. See HorizontalBoxLayout.setLayoutStyle(String) for details.

Further documentation.

Since:
V4.4