com.ebasetech.xi.api.controls
Interface ColumnLayoutCell

All Superinterfaces:
LayoutCell, PaddingStyleProperties

public interface ColumnLayoutCell
extends LayoutCell, PaddingStyleProperties

The ColumnLayoutCell interface provides the ability to override properties from the parent control's ColumnLayout;

Further documentation.

Since:
V4.4

Method Summary
 java.lang.String getHAlign()
          Horizontal alignment, overriding the layout cell horizontal alignment from the parent ColumnLayout.
 java.lang.String getLayoutClass()
          Layout cell CSS classes, overriding the layout cell CSS classes from the parent ColumnLayout.
 java.lang.String getLayoutStyle()
          Layout cell inline CSS style, overriding the layout cell CSS style from the parent ColumnLayout.
 java.lang.String getVAlign()
          Vertical alignment, overriding the layout cell vertical alignment from the parent ColumnLayout.
 void setHAlign(java.lang.String hAlign)
          Sets horizontal alignment, overriding the layout cell horizontal alignment from the parent ColumnLayout.
 void setLayoutClass(java.lang.String layoutClass)
          Sets layout cell CSS classes, overriding the layout cell CSS classes from the parent ColumnLayout.
 void setLayoutStyle(java.lang.String layoutStyle)
          Sets layout cell inline CSS style, overriding the layout cell CSS style from the parent ColumnLayout.
 void setVAlign(java.lang.String vAlign)
          Sets vertical alignment, overriding the layout cell vertical alignment from the parent ColumnLayout.
 
Methods inherited from interface com.ebasetech.xi.api.controls.PaddingStyleProperties
getAllPadding, getBottomPadding, getLeftPadding, getRightPadding, getTopPadding, setAllPadding, setBottomPadding, setLeftPadding, setRightPadding, setTopPadding
 

Method Detail

getLayoutClass

java.lang.String getLayoutClass()
Layout cell CSS classes, overriding the layout cell CSS classes from the parent ColumnLayout. See ColumnLayout.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 ColumnLayout. See ColumnLayout.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 ColumnLayout. See ColumnLayout.getLayoutStyle() for details.

setLayoutStyle

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

Further documentation.

Since:
V4.4

getHAlign

java.lang.String getHAlign()
Horizontal alignment, overriding the layout cell horizontal alignment from the parent ColumnLayout. See ColumnLayout.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 ColumnLayout. See ColumnLayout.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 ColumnLayout. See ColumnLayout.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 ColumnLayout. See ColumnLayout.setCellVAlign(String) for details.

Further documentation.

Since:
V4.4