com.ebasetech.xi.api.controls
Interface SpacerControl

All Superinterfaces:
Control, Element, EventOwner, MarginStyleProperties, MessageContainer, java.io.Serializable, WebFormEventOwner

public interface SpacerControl
extends Control, MarginStyleProperties

A Spacer Control control represents either or both a horizontal space and/or a vertical space.

Further documentation.


Method Summary
 java.lang.String getHeight()
          Spacer height.
 java.lang.String getWidth()
          Spacer width.
 void setHeight(java.lang.String height)
          Sets the spacer height.
 void setWidth(java.lang.String width)
          Sets the spacer width.
 
Methods inherited from interface com.ebasetech.xi.api.controls.Control
getAll, getCssClass, getErrorMsgClass, getErrorMsgStyle, getLayoutCell, getNextSiblingControl, getPage, getParentControl, getPreviousSiblingControl, getStyle, getWarningMsgClass, getWarningMsgStyle, hasModifier, hide, isDisplayOnly, isDisplayOnlyIncludingParents, isEventField, isHidden, isInheritMsg, isLocalMsg, isNewLine, isShowing, refresh, requestFocus, setCssClass, setDisplayOnly, setErrorMsgClass, setErrorMsgStyle, setHidden, setNewLine, setStyle, setWarningMsgClass, setWarningMsgStyle, show
 
Methods inherited from interface com.ebasetech.xi.api.Element
getElementName, getElementType
 
Methods inherited from interface com.ebasetech.xi.api.MessageContainer
addErrorMessage, addErrorMessage, addErrorMessage, addErrorMessage, addErrorMessage, addWarningMessage, addWarningMessage, addWarningMessage, addWarningMessage, addWarningMessage, existErrorMessages, existMessages, existWarningMessages
 
Methods inherited from interface com.ebasetech.xi.api.controls.MarginStyleProperties
getAllMargin, getBottomMargin, getLeftMargin, getRightMargin, getTopMargin, setAllMargin, setBottomMargin, setLeftMargin, setRightMargin, setTopMargin
 

Method Detail

getWidth

java.lang.String getWidth()
Spacer width. See setWidth(String) for details of supported values when setting this property.

Since:
V4.4

setWidth

void setWidth(java.lang.String width)
Sets the spacer width.

Any valid value for the CSS width property can be specified e.g. 10px

Since:
V4.4

getHeight

java.lang.String getHeight()
Spacer height. See setHeight(String) for details of supported values when setting this property.

Since:
V4.4

setHeight

void setHeight(java.lang.String height)
Sets the spacer height.

Any valid value for the CSS height property can be specified e.g. 20px

Since:
V4.4