public interface BootstrapColumnControl extends LayoutControl, BackgroundStyleProperties, BorderStyleProperties, PaddingStyleProperties, MarginStyleProperties, TextStyleProperties, BootstrapWidthProperties
A container representing a column within the bootstrap framework. Outside of this framework it functions as a simple div. Can only be placed in a Bootstrap Row Control.
<div> .. child controls </div>Further documentation.
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getHeight()Column height. | 
| java.lang.String | getVerticalAlignment()How the column is vertically itself in its owning row | 
| void | setHeight(java.lang.String height)Sets the Column height, and is equivalent to the CSS height property and any valid value for this CSS property can be used. | 
| void | setVerticalAlignment(java.lang.String alignment)Vertically aligns this column within its row. | 
getLayout, getLayoutTypegetChildControlsaddCssClass, getAll, getCssClass, getErrorMsgClass, getErrorMsgStyle, getInfoMsgClass, getInfoMsgStyle, getLayoutCell, getNextSiblingControl, getPage, getParentControl, getPreviousSiblingControl, getStyle, getWarningMsgClass, getWarningMsgStyle, hasModifier, hide, isContainer, isDisplayOnly, isDisplayOnlyIncludingParents, isEventField, isHidden, isInheritMsg, isLocalMsg, isNewLine, isShowing, refresh, removeCssClass, requestFocus, setCssClass, setDisplayOnly, setErrorMsgClass, setErrorMsgStyle, setHidden, setInfoMsgClass, setInfoMsgStyle, setNewLine, setStyle, setWarningMsgClass, setWarningMsgStyle, showgetElementName, getElementTypeaddErrorMessage, addErrorMessage, addErrorMessage, addErrorMessage, addErrorMessage, addErrorMessageText, addErrorMessageText, addErrorMessageText, addInfoMessage, addInfoMessage, addInfoMessageText, addInfoMessageText, addInfoMessageText, addWarningMessage, addWarningMessage, addWarningMessage, addWarningMessage, addWarningMessage, addWarningMessageText, addWarningMessageText, addWarningMessageText, existErrorMessages, existInfoMessages, existMessages, existWarningMessagesgetErrorMessageStyle, getInfoMessageStyle, getWarningMessageStylegetBackgroundColor, getBackgroundImage, getBackgroundImagePosition, getBackgroundImageRepeat, setBackgroundColor, setBackgroundImage, setBackgroundImagePosition, setBackgroundImageRepeatgetBorderColor, getBorderRadius, getBorderStyle, getBorderWidth, getBottomBorderWidth, getLeftBorderWidth, getRightBorderWidth, getTopBorderWidth, setBorderColor, setBorderRadius, setBorderStyle, setBorderWidth, setBottomBorderWidth, setLeftBorderWidth, setRightBorderWidth, setTopBorderWidthgetAllPadding, getBottomPadding, getLeftPadding, getRightPadding, getTopPadding, setAllPadding, setBottomPadding, setLeftPadding, setRightPadding, setTopPaddinggetAllMargin, getBottomMargin, getLeftMargin, getRightMargin, getTopMargin, setAllMargin, setBottomMargin, setLeftMargin, setRightMargin, setTopMargingetLineHeight, getTextBold, getTextColor, getTextDecoration, getTextFont, getTextItalic, getTextSize, setLineHeight, setTextBold, setTextColor, setTextDecoration, setTextFont, setTextItalic, setTextSizegetExtraLargeWidth, getExtraSmallWidth, getLargeWidth, getMediumWidth, getSmallWidth, setExtraLargeWidth, setExtraSmallWidth, setLargeWidth, setMediumWidth, setSmallWidthjava.lang.String getHeight()
setHeight(String)void setHeight(java.lang.String height)
null removes any existing value.
 Examples:
 controls.COLUMN1.height = "50px";
 controls.COLUMN1.setHeight("100px");
 java.lang.String getVerticalAlignment()
setVerticalAlignment(String)void setVerticalAlignment(java.lang.String alignment)
Possible values are: Start - Aligns to the start (often the top) of the row. Center - Aligns to the center of the row. End - Aligns to the end (often the bottom) of the row. Example:
 controls.COLUMN1.verticalAlignment = "Start";
 controls.COLUMN1.setVerticalAlignment("Center");