com.ebasetech.xi.api.controls
Interface HorizontalLineControl

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

public interface HorizontalLineControl
extends Control, MarginStyleProperties

A Horizontal Line Control represents a horizontal line.

Further documentation.


Method Summary
 java.lang.String getColor()
          The line color.
 java.lang.String getWidth()
          Line width.
 void setColor(java.lang.String color)
          Sets the line color.
 void setWidth(java.lang.String width)
          Sets the line 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()
Line 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 line width.

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

Since:
V4.4

getColor

java.lang.String getColor()
The line color. See setColor(String) for details of supported values when setting this property.

Since:
V4.4

setColor

void setColor(java.lang.String color)
Sets the line color. Any valid value for the CSS color property can be used.

Since:
V4.4