org.w3c.dom.css
Interface CSS2Properties


public interface CSS2Properties

The CSS2Properties interface represents a convenience mechanism for retrieving and setting properties within a CSSStyleDeclaration. The attributes of this interface correspond to all the properties specified in CSS2. Getting an attribute of this interface is equivalent to calling the getPropertyValue method of the CSSStyleDeclaration interface. Setting an attribute of this interface is equivalent to calling the setProperty method of the CSSStyleDeclaration interface.

A conformant implementation of the CSS module is not required to implement the CSS2Properties interface. If an implementation does implement this interface, the expectation is that language-specific methods can be used to cast from an instance of the CSSStyleDeclaration interface to the CSS2Properties interface.

If an implementation does implement this interface, it is expected to understand the specific syntax of the shorthand properties, and apply their semantics; when the margin property is set, for example, the marginTop, marginRight, marginBottom and marginLeft properties are actually being set by the underlying implementation.

When dealing with CSS "shorthand" properties, the shorthand properties should be decomposed into their component longhand properties as appropriate, and when querying for their value, the form returned should be the shortest form exactly equivalent to the declarations made in the ruleset. However, if there is no shorthand declaration that could be added to the ruleset without changing in any way the rules already declared in the ruleset (i.e., by adding longhand rules that were previously not declared in the ruleset), then the empty string should be returned for the shorthand property.

For example, querying for the font property should not return "normal normal normal 14pt/normal Arial, sans-serif", when "14pt Arial, sans-serif" suffices. (The normals are initial values, and are implied by use of the longhand property.)

If the values for all the longhand properties that compose a particular string are the initial values, then a string consisting of all the initial values should be returned (e.g. a border-width value of "medium" should be returned as such, not as "").

For some shorthand properties that take missing values from other sides, such as the margin, padding, and border-[width|style|color] properties, the minimum number of sides possible should be used; i.e., "0px 10px" will be returned instead of "0px 10px 0px 10px".

If the value of a shorthand property can not be decomposed into its component longhand properties, as is the case for the font property with a value of "menu", querying for the values of the component longhand properties should return the empty string.

See also the Document Object Model (DOM) Level 2 Style Specification.

Since:
BlackBerry API 6.0.0, DOM Level 2

Method Summary
 String getAzimuth()
          See the azimuth property definition in CSS2.
 String getBackground()
          See the background property definition in CSS2.
 String getBackgroundAttachment()
          See the background-attachment property definition in CSS2.
 String getBackgroundColor()
          See the background-color property definition in CSS2.
 String getBackgroundImage()
          See the background-image property definition in CSS2.
 String getBackgroundPosition()
          See the background-position property definition in CSS2.
 String getBackgroundRepeat()
          See the background-repeat property definition in CSS2.
 String getBorder()
          See the border property definition in CSS2.
 String getBorderBottom()
          See the border-bottom property definition in CSS2.
 String getBorderBottomColor()
          See the border-bottom-color property definition in CSS2.
 String getBorderBottomStyle()
          See the border-bottom-style property definition in CSS2.
 String getBorderBottomWidth()
          See the border-bottom-width property definition in CSS2.
 String getBorderCollapse()
          See the border-collapse property definition in CSS2.
 String getBorderColor()
          See the border-color property definition in CSS2.
 String getBorderLeft()
          See the border-left property definition in CSS2.
 String getBorderLeftColor()
          See the border-left-color property definition in CSS2.
 String getBorderLeftStyle()
          See the border-left-style property definition in CSS2.
 String getBorderLeftWidth()
          See the border-left-width property definition in CSS2.
 String getBorderRight()
          See the border-right property definition in CSS2.
 String getBorderRightColor()
          See the border-right-color property definition in CSS2.
 String getBorderRightStyle()
          See the border-right-style property definition in CSS2.
 String getBorderRightWidth()
          See the border-right-width property definition in CSS2.
 String getBorderSpacing()
          See the border-spacing property definition in CSS2.
 String getBorderStyle()
          See the border-style property definition in CSS2.
 String getBorderTop()
          See the border-top property definition in CSS2.
 String getBorderTopColor()
          See the border-top-color property definition in CSS2.
 String getBorderTopStyle()
          See the border-top-style property definition in CSS2.
 String getBorderTopWidth()
          See the border-top-width property definition in CSS2.
 String getBorderWidth()
          See the border-width property definition in CSS2.
 String getBottom()
          See the bottom property definition in CSS2.
 String getCaptionSide()
          See the caption-side property definition in CSS2.
 String getClear()
          See the clear property definition in CSS2.
 String getClip()
          See the clip property definition in CSS2.
 String getColor()
          See the color property definition in CSS2.
 String getContent()
          See the content property definition in CSS2.
 String getCounterIncrement()
          See the counter-increment property definition in CSS2.
 String getCounterReset()
          See the counter-reset property definition in CSS2.
 String getCssFloat()
          See the float property definition in CSS2.
 String getCue()
          See the cue property definition in CSS2.
 String getCueAfter()
          See the cue-after property definition in CSS2.
 String getCueBefore()
          See the cue-before property definition in CSS2.
 String getCursor()
          See the cursor property definition in CSS2.
 String getDirection()
          See the direction property definition in CSS2.
 String getDisplay()
          See the display property definition in CSS2.
 String getElevation()
          See the elevation property definition in CSS2.
 String getEmptyCells()
          See the empty-cells property definition in CSS2.
 String getFont()
          See the font property definition in CSS2.
 String getFontFamily()
          See the font-family property definition in CSS2.
 String getFontSize()
          See the font-size property definition in CSS2.
 String getFontSizeAdjust()
          See the font-size-adjust property definition in CSS2.
 String getFontStretch()
          See the font-stretch property definition in CSS2.
 String getFontStyle()
          See the font-style property definition in CSS2.
 String getFontVariant()
          See the font-variant property definition in CSS2.
 String getFontWeight()
          See the font-weight property definition in CSS2.
 String getHeight()
          See the height property definition in CSS2.
 String getLeft()
          See the left property definition in CSS2.
 String getLetterSpacing()
          See the letter-spacing property definition in CSS2.
 String getLineHeight()
          See the line-height property definition in CSS2.
 String getListStyle()
          See the list-style property definition in CSS2.
 String getListStyleImage()
          See the list-style-image property definition in CSS2.
 String getListStylePosition()
          See the list-style-position property definition in CSS2.
 String getListStyleType()
          See the list-style-type property definition in CSS2.
 String getMargin()
          See the margin property definition in CSS2.
 String getMarginBottom()
          See the margin-bottom property definition in CSS2.
 String getMarginLeft()
          See the margin-left property definition in CSS2.
 String getMarginRight()
          See the margin-right property definition in CSS2.
 String getMarginTop()
          See the margin-top property definition in CSS2.
 String getMarkerOffset()
          See the marker-offset property definition in CSS2.
 String getMarks()
          See the marks property definition in CSS2.
 String getMaxHeight()
          See the max-height property definition in CSS2.
 String getMaxWidth()
          See the max-width property definition in CSS2.
 String getMinHeight()
          See the min-height property definition in CSS2.
 String getMinWidth()
          See the min-width property definition in CSS2.
 String getOrphans()
          See the orphans property definition in CSS2.
 String getOutline()
          See the outline property definition in CSS2.
 String getOutlineColor()
          See the outline-color property definition in CSS2.
 String getOutlineStyle()
          See the outline-style property definition in CSS2.
 String getOutlineWidth()
          See the outline-width property definition in CSS2.
 String getOverflow()
          See the overflow property definition in CSS2.
 String getPadding()
          See the padding property definition in CSS2.
 String getPaddingBottom()
          See the padding-bottom property definition in CSS2.
 String getPaddingLeft()
          See the padding-left property definition in CSS2.
 String getPaddingRight()
          See the padding-right property definition in CSS2.
 String getPaddingTop()
          See the padding-top property definition in CSS2.
 String getPage()
          See the page property definition in CSS2.
 String getPageBreakAfter()
          See the page-break-after property definition in CSS2.
 String getPageBreakBefore()
          See the page-break-before property definition in CSS2.
 String getPageBreakInside()
          See the page-break-inside property definition in CSS2.
 String getPause()
          See the pause property definition in CSS2.
 String getPauseAfter()
          See the pause-after property definition in CSS2.
 String getPauseBefore()
          See the pause-before property definition in CSS2.
 String getPitch()
          See the pitch property definition in CSS2.
 String getPitchRange()
          See the pitch-range property definition in CSS2.
 String getPlayDuring()
          See the play-during property definition in CSS2.
 String getPosition()
          See the position property definition in CSS2.
 String getQuotes()
          See the quotes property definition in CSS2.
 String getRichness()
          See the richness property definition in CSS2.
 String getRight()
          See the right property definition in CSS2.
 String getSize()
          See the size property definition in CSS2.
 String getSpeak()
          See the speak property definition in CSS2.
 String getSpeakHeader()
          See the speak-header property definition in CSS2.
 String getSpeakNumeral()
          See the speak-numeral property definition in CSS2.
 String getSpeakPunctuation()
          See the speak-punctuation property definition in CSS2.
 String getSpeechRate()
          See the speech-rate property definition in CSS2.
 String getStress()
          See the stress property definition in CSS2.
 String getTableLayout()
          See the table-layout property definition in CSS2.
 String getTextAlign()
          See the text-align property definition in CSS2.
 String getTextDecoration()
          See the text-decoration property definition in CSS2.
 String getTextIndent()
          See the text-indent property definition in CSS2.
 String getTextShadow()
          See the text-shadow property definition in CSS2.
 String getTextTransform()
          See the text-transform property definition in CSS2.
 String getTop()
          See the top property definition in CSS2.
 String getUnicodeBidi()
          See the unicode-bidi property definition in CSS2.
 String getVerticalAlign()
          See the vertical-align property definition in CSS2.
 String getVisibility()
          See the visibility property definition in CSS2.
 String getVoiceFamily()
          See the voice-family property definition in CSS2.
 String getVolume()
          See the volume property definition in CSS2.
 String getWhiteSpace()
          See the white-space property definition in CSS2.
 String getWidows()
          See the widows property definition in CSS2.
 String getWidth()
          See the width property definition in CSS2.
 String getWordSpacing()
          See the word-spacing property definition in CSS2.
 String getZIndex()
          See the z-index property definition in CSS2.
 void setAzimuth(String azimuth)
           
 void setBackground(String background)
           
 void setBackgroundAttachment(String backgroundAttachment)
           
 void setBackgroundColor(String backgroundColor)
           
 void setBackgroundImage(String backgroundImage)
           
 void setBackgroundPosition(String backgroundPosition)
           
 void setBackgroundRepeat(String backgroundRepeat)
           
 void setBorder(String border)
           
 void setBorderBottom(String borderBottom)
           
 void setBorderBottomColor(String borderBottomColor)
           
 void setBorderBottomStyle(String borderBottomStyle)
           
 void setBorderBottomWidth(String borderBottomWidth)
           
 void setBorderCollapse(String borderCollapse)
           
 void setBorderColor(String borderColor)
           
 void setBorderLeft(String borderLeft)
           
 void setBorderLeftColor(String borderLeftColor)
           
 void setBorderLeftStyle(String borderLeftStyle)
           
 void setBorderLeftWidth(String borderLeftWidth)
           
 void setBorderRight(String borderRight)
           
 void setBorderRightColor(String borderRightColor)
           
 void setBorderRightStyle(String borderRightStyle)
           
 void setBorderRightWidth(String borderRightWidth)
           
 void setBorderSpacing(String borderSpacing)
           
 void setBorderStyle(String borderStyle)
           
 void setBorderTop(String borderTop)
           
 void setBorderTopColor(String borderTopColor)
           
 void setBorderTopStyle(String borderTopStyle)
           
 void setBorderTopWidth(String borderTopWidth)
           
 void setBorderWidth(String borderWidth)
           
 void setBottom(String bottom)
           
 void setCaptionSide(String captionSide)
           
 void setClear(String clear)
           
 void setClip(String clip)
           
 void setColor(String color)
           
 void setContent(String content)
           
 void setCounterIncrement(String counterIncrement)
           
 void setCounterReset(String counterReset)
           
 void setCssFloat(String cssFloat)
           
 void setCue(String cue)
           
 void setCueAfter(String cueAfter)
           
 void setCueBefore(String cueBefore)
           
 void setCursor(String cursor)
           
 void setDirection(String direction)
           
 void setDisplay(String display)
           
 void setElevation(String elevation)
           
 void setEmptyCells(String emptyCells)
           
 void setFont(String font)
           
 void setFontFamily(String fontFamily)
           
 void setFontSize(String fontSize)
           
 void setFontSizeAdjust(String fontSizeAdjust)
           
 void setFontStretch(String fontStretch)
           
 void setFontStyle(String fontStyle)
           
 void setFontVariant(String fontVariant)
           
 void setFontWeight(String fontWeight)
           
 void setHeight(String height)
           
 void setLeft(String left)
           
 void setLetterSpacing(String letterSpacing)
           
 void setLineHeight(String lineHeight)
           
 void setListStyle(String listStyle)
           
 void setListStyleImage(String listStyleImage)
           
 void setListStylePosition(String listStylePosition)
           
 void setListStyleType(String listStyleType)
           
 void setMargin(String margin)
           
 void setMarginBottom(String marginBottom)
           
 void setMarginLeft(String marginLeft)
           
 void setMarginRight(String marginRight)
           
 void setMarginTop(String marginTop)
           
 void setMarkerOffset(String markerOffset)
           
 void setMarks(String marks)
           
 void setMaxHeight(String maxHeight)
           
 void setMaxWidth(String maxWidth)
           
 void setMinHeight(String minHeight)
           
 void setMinWidth(String minWidth)
           
 void setOrphans(String orphans)
           
 void setOutline(String outline)
           
 void setOutlineColor(String outlineColor)
           
 void setOutlineStyle(String outlineStyle)
           
 void setOutlineWidth(String outlineWidth)
           
 void setOverflow(String overflow)
           
 void setPadding(String padding)
           
 void setPaddingBottom(String paddingBottom)
           
 void setPaddingLeft(String paddingLeft)
           
 void setPaddingRight(String paddingRight)
           
 void setPaddingTop(String paddingTop)
           
 void setPage(String page)
           
 void setPageBreakAfter(String pageBreakAfter)
           
 void setPageBreakBefore(String pageBreakBefore)
           
 void setPageBreakInside(String pageBreakInside)
           
 void setPause(String pause)
           
 void setPauseAfter(String pauseAfter)
           
 void setPauseBefore(String pauseBefore)
           
 void setPitch(String pitch)
           
 void setPitchRange(String pitchRange)
           
 void setPlayDuring(String playDuring)
           
 void setPosition(String position)
           
 void setQuotes(String quotes)
           
 void setRichness(String richness)
           
 void setRight(String right)
           
 void setSize(String size)
           
 void setSpeak(String speak)
           
 void setSpeakHeader(String speakHeader)
           
 void setSpeakNumeral(String speakNumeral)
           
 void setSpeakPunctuation(String speakPunctuation)
           
 void setSpeechRate(String speechRate)
           
 void setStress(String stress)
           
 void setTableLayout(String tableLayout)
           
 void setTextAlign(String textAlign)
           
 void setTextDecoration(String textDecoration)
           
 void setTextIndent(String textIndent)
           
 void setTextShadow(String textShadow)
           
 void setTextTransform(String textTransform)
           
 void setTop(String top)
           
 void setUnicodeBidi(String unicodeBidi)
           
 void setVerticalAlign(String verticalAlign)
           
 void setVisibility(String visibility)
           
 void setVoiceFamily(String voiceFamily)
           
 void setVolume(String volume)
           
 void setWhiteSpace(String whiteSpace)
           
 void setWidows(String widows)
           
 void setWidth(String width)
           
 void setWordSpacing(String wordSpacing)
           
 void setZIndex(String zIndex)
           
 



Method Detail

getAzimuth

String getAzimuth()
See the azimuth property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setAzimuth

void setAzimuth(String azimuth)
                throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBackground

String getBackground()
See the background property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBackground

void setBackground(String background)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBackgroundAttachment

String getBackgroundAttachment()
See the background-attachment property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBackgroundAttachment

void setBackgroundAttachment(String backgroundAttachment)
                             throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBackgroundColor

String getBackgroundColor()
See the background-color property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBackgroundColor

void setBackgroundColor(String backgroundColor)
                        throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBackgroundImage

String getBackgroundImage()
See the background-image property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBackgroundImage

void setBackgroundImage(String backgroundImage)
                        throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBackgroundPosition

String getBackgroundPosition()
See the background-position property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBackgroundPosition

void setBackgroundPosition(String backgroundPosition)
                           throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBackgroundRepeat

String getBackgroundRepeat()
See the background-repeat property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBackgroundRepeat

void setBackgroundRepeat(String backgroundRepeat)
                         throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorder

String getBorder()
See the border property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorder

void setBorder(String border)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderCollapse

String getBorderCollapse()
See the border-collapse property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderCollapse

void setBorderCollapse(String borderCollapse)
                       throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderColor

String getBorderColor()
See the border-color property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderColor

void setBorderColor(String borderColor)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderSpacing

String getBorderSpacing()
See the border-spacing property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderSpacing

void setBorderSpacing(String borderSpacing)
                      throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderStyle

String getBorderStyle()
See the border-style property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderStyle

void setBorderStyle(String borderStyle)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderTop

String getBorderTop()
See the border-top property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderTop

void setBorderTop(String borderTop)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderRight

String getBorderRight()
See the border-right property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderRight

void setBorderRight(String borderRight)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderBottom

String getBorderBottom()
See the border-bottom property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderBottom

void setBorderBottom(String borderBottom)
                     throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderLeft

String getBorderLeft()
See the border-left property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderLeft

void setBorderLeft(String borderLeft)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderTopColor

String getBorderTopColor()
See the border-top-color property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderTopColor

void setBorderTopColor(String borderTopColor)
                       throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderRightColor

String getBorderRightColor()
See the border-right-color property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderRightColor

void setBorderRightColor(String borderRightColor)
                         throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderBottomColor

String getBorderBottomColor()
See the border-bottom-color property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderBottomColor

void setBorderBottomColor(String borderBottomColor)
                          throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderLeftColor

String getBorderLeftColor()
See the border-left-color property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderLeftColor

void setBorderLeftColor(String borderLeftColor)
                        throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderTopStyle

String getBorderTopStyle()
See the border-top-style property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderTopStyle

void setBorderTopStyle(String borderTopStyle)
                       throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderRightStyle

String getBorderRightStyle()
See the border-right-style property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderRightStyle

void setBorderRightStyle(String borderRightStyle)
                         throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderBottomStyle

String getBorderBottomStyle()
See the border-bottom-style property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderBottomStyle

void setBorderBottomStyle(String borderBottomStyle)
                          throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderLeftStyle

String getBorderLeftStyle()
See the border-left-style property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderLeftStyle

void setBorderLeftStyle(String borderLeftStyle)
                        throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderTopWidth

String getBorderTopWidth()
See the border-top-width property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderTopWidth

void setBorderTopWidth(String borderTopWidth)
                       throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderRightWidth

String getBorderRightWidth()
See the border-right-width property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderRightWidth

void setBorderRightWidth(String borderRightWidth)
                         throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderBottomWidth

String getBorderBottomWidth()
See the border-bottom-width property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderBottomWidth

void setBorderBottomWidth(String borderBottomWidth)
                          throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderLeftWidth

String getBorderLeftWidth()
See the border-left-width property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderLeftWidth

void setBorderLeftWidth(String borderLeftWidth)
                        throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBorderWidth

String getBorderWidth()
See the border-width property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBorderWidth

void setBorderWidth(String borderWidth)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getBottom

String getBottom()
See the bottom property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setBottom

void setBottom(String bottom)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getCaptionSide

String getCaptionSide()
See the caption-side property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setCaptionSide

void setCaptionSide(String captionSide)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getClear

String getClear()
See the clear property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setClear

void setClear(String clear)
              throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getClip

String getClip()
See the clip property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setClip

void setClip(String clip)
             throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getColor

String getColor()
See the color property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setColor

void setColor(String color)
              throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getContent

String getContent()
See the content property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setContent

void setContent(String content)
                throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getCounterIncrement

String getCounterIncrement()
See the counter-increment property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setCounterIncrement

void setCounterIncrement(String counterIncrement)
                         throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getCounterReset

String getCounterReset()
See the counter-reset property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setCounterReset

void setCounterReset(String counterReset)
                     throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getCue

String getCue()
See the cue property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setCue

void setCue(String cue)
            throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getCueAfter

String getCueAfter()
See the cue-after property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setCueAfter

void setCueAfter(String cueAfter)
                 throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getCueBefore

String getCueBefore()
See the cue-before property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setCueBefore

void setCueBefore(String cueBefore)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getCursor

String getCursor()
See the cursor property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setCursor

void setCursor(String cursor)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getDirection

String getDirection()
See the direction property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setDirection

void setDirection(String direction)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getDisplay

String getDisplay()
See the display property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setDisplay

void setDisplay(String display)
                throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getElevation

String getElevation()
See the elevation property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setElevation

void setElevation(String elevation)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getEmptyCells

String getEmptyCells()
See the empty-cells property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setEmptyCells

void setEmptyCells(String emptyCells)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getCssFloat

String getCssFloat()
See the float property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setCssFloat

void setCssFloat(String cssFloat)
                 throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getFont

String getFont()
See the font property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setFont

void setFont(String font)
             throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getFontFamily

String getFontFamily()
See the font-family property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setFontFamily

void setFontFamily(String fontFamily)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getFontSize

String getFontSize()
See the font-size property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setFontSize

void setFontSize(String fontSize)
                 throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getFontSizeAdjust

String getFontSizeAdjust()
See the font-size-adjust property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setFontSizeAdjust

void setFontSizeAdjust(String fontSizeAdjust)
                       throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getFontStretch

String getFontStretch()
See the font-stretch property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setFontStretch

void setFontStretch(String fontStretch)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getFontStyle

String getFontStyle()
See the font-style property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setFontStyle

void setFontStyle(String fontStyle)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getFontVariant

String getFontVariant()
See the font-variant property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setFontVariant

void setFontVariant(String fontVariant)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getFontWeight

String getFontWeight()
See the font-weight property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setFontWeight

void setFontWeight(String fontWeight)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getHeight

String getHeight()
See the height property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setHeight

void setHeight(String height)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getLeft

String getLeft()
See the left property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setLeft

void setLeft(String left)
             throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getLetterSpacing

String getLetterSpacing()
See the letter-spacing property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setLetterSpacing

void setLetterSpacing(String letterSpacing)
                      throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getLineHeight

String getLineHeight()
See the line-height property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setLineHeight

void setLineHeight(String lineHeight)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getListStyle

String getListStyle()
See the list-style property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setListStyle

void setListStyle(String listStyle)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getListStyleImage

String getListStyleImage()
See the list-style-image property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setListStyleImage

void setListStyleImage(String listStyleImage)
                       throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getListStylePosition

String getListStylePosition()
See the list-style-position property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setListStylePosition

void setListStylePosition(String listStylePosition)
                          throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getListStyleType

String getListStyleType()
See the list-style-type property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setListStyleType

void setListStyleType(String listStyleType)
                      throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMargin

String getMargin()
See the margin property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMargin

void setMargin(String margin)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMarginTop

String getMarginTop()
See the margin-top property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMarginTop

void setMarginTop(String marginTop)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMarginRight

String getMarginRight()
See the margin-right property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMarginRight

void setMarginRight(String marginRight)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMarginBottom

String getMarginBottom()
See the margin-bottom property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMarginBottom

void setMarginBottom(String marginBottom)
                     throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMarginLeft

String getMarginLeft()
See the margin-left property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMarginLeft

void setMarginLeft(String marginLeft)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMarkerOffset

String getMarkerOffset()
See the marker-offset property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMarkerOffset

void setMarkerOffset(String markerOffset)
                     throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMarks

String getMarks()
See the marks property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMarks

void setMarks(String marks)
              throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMaxHeight

String getMaxHeight()
See the max-height property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMaxHeight

void setMaxHeight(String maxHeight)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMaxWidth

String getMaxWidth()
See the max-width property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMaxWidth

void setMaxWidth(String maxWidth)
                 throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMinHeight

String getMinHeight()
See the min-height property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMinHeight

void setMinHeight(String minHeight)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getMinWidth

String getMinWidth()
See the min-width property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setMinWidth

void setMinWidth(String minWidth)
                 throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getOrphans

String getOrphans()
See the orphans property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setOrphans

void setOrphans(String orphans)
                throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getOutline

String getOutline()
See the outline property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setOutline

void setOutline(String outline)
                throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getOutlineColor

String getOutlineColor()
See the outline-color property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setOutlineColor

void setOutlineColor(String outlineColor)
                     throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getOutlineStyle

String getOutlineStyle()
See the outline-style property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setOutlineStyle

void setOutlineStyle(String outlineStyle)
                     throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getOutlineWidth

String getOutlineWidth()
See the outline-width property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setOutlineWidth

void setOutlineWidth(String outlineWidth)
                     throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getOverflow

String getOverflow()
See the overflow property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setOverflow

void setOverflow(String overflow)
                 throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPadding

String getPadding()
See the padding property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPadding

void setPadding(String padding)
                throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPaddingTop

String getPaddingTop()
See the padding-top property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPaddingTop

void setPaddingTop(String paddingTop)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPaddingRight

String getPaddingRight()
See the padding-right property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPaddingRight

void setPaddingRight(String paddingRight)
                     throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPaddingBottom

String getPaddingBottom()
See the padding-bottom property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPaddingBottom

void setPaddingBottom(String paddingBottom)
                      throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPaddingLeft

String getPaddingLeft()
See the padding-left property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPaddingLeft

void setPaddingLeft(String paddingLeft)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPage

String getPage()
See the page property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPage

void setPage(String page)
             throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPageBreakAfter

String getPageBreakAfter()
See the page-break-after property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPageBreakAfter

void setPageBreakAfter(String pageBreakAfter)
                       throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPageBreakBefore

String getPageBreakBefore()
See the page-break-before property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPageBreakBefore

void setPageBreakBefore(String pageBreakBefore)
                        throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPageBreakInside

String getPageBreakInside()
See the page-break-inside property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPageBreakInside

void setPageBreakInside(String pageBreakInside)
                        throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPause

String getPause()
See the pause property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPause

void setPause(String pause)
              throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPauseAfter

String getPauseAfter()
See the pause-after property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPauseAfter

void setPauseAfter(String pauseAfter)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPauseBefore

String getPauseBefore()
See the pause-before property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPauseBefore

void setPauseBefore(String pauseBefore)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPitch

String getPitch()
See the pitch property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPitch

void setPitch(String pitch)
              throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPitchRange

String getPitchRange()
See the pitch-range property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPitchRange

void setPitchRange(String pitchRange)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPlayDuring

String getPlayDuring()
See the play-during property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPlayDuring

void setPlayDuring(String playDuring)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getPosition

String getPosition()
See the position property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setPosition

void setPosition(String position)
                 throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getQuotes

String getQuotes()
See the quotes property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setQuotes

void setQuotes(String quotes)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getRichness

String getRichness()
See the richness property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setRichness

void setRichness(String richness)
                 throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getRight

String getRight()
See the right property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setRight

void setRight(String right)
              throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getSize

String getSize()
See the size property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setSize

void setSize(String size)
             throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getSpeak

String getSpeak()
See the speak property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setSpeak

void setSpeak(String speak)
              throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getSpeakHeader

String getSpeakHeader()
See the speak-header property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setSpeakHeader

void setSpeakHeader(String speakHeader)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getSpeakNumeral

String getSpeakNumeral()
See the speak-numeral property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setSpeakNumeral

void setSpeakNumeral(String speakNumeral)
                     throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getSpeakPunctuation

String getSpeakPunctuation()
See the speak-punctuation property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setSpeakPunctuation

void setSpeakPunctuation(String speakPunctuation)
                         throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getSpeechRate

String getSpeechRate()
See the speech-rate property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setSpeechRate

void setSpeechRate(String speechRate)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getStress

String getStress()
See the stress property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setStress

void setStress(String stress)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getTableLayout

String getTableLayout()
See the table-layout property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setTableLayout

void setTableLayout(String tableLayout)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getTextAlign

String getTextAlign()
See the text-align property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setTextAlign

void setTextAlign(String textAlign)
                  throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getTextDecoration

String getTextDecoration()
See the text-decoration property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setTextDecoration

void setTextDecoration(String textDecoration)
                       throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getTextIndent

String getTextIndent()
See the text-indent property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setTextIndent

void setTextIndent(String textIndent)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getTextShadow

String getTextShadow()
See the text-shadow property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setTextShadow

void setTextShadow(String textShadow)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getTextTransform

String getTextTransform()
See the text-transform property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setTextTransform

void setTextTransform(String textTransform)
                      throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getTop

String getTop()
See the top property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setTop

void setTop(String top)
            throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getUnicodeBidi

String getUnicodeBidi()
See the unicode-bidi property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setUnicodeBidi

void setUnicodeBidi(String unicodeBidi)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getVerticalAlign

String getVerticalAlign()
See the vertical-align property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setVerticalAlign

void setVerticalAlign(String verticalAlign)
                      throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getVisibility

String getVisibility()
See the visibility property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setVisibility

void setVisibility(String visibility)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getVoiceFamily

String getVoiceFamily()
See the voice-family property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setVoiceFamily

void setVoiceFamily(String voiceFamily)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getVolume

String getVolume()
See the volume property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setVolume

void setVolume(String volume)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getWhiteSpace

String getWhiteSpace()
See the white-space property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setWhiteSpace

void setWhiteSpace(String whiteSpace)
                   throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getWidows

String getWidows()
See the widows property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setWidows

void setWidows(String widows)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getWidth

String getWidth()
See the width property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setWidth

void setWidth(String width)
              throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getWordSpacing

String getWordSpacing()
See the word-spacing property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setWordSpacing

void setWordSpacing(String wordSpacing)
                    throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0

getZIndex

String getZIndex()
See the z-index property definition in CSS2.

Throws:
DOMException - SYNTAX_ERR: Raised if the new value has a syntax error and is unparsable.
NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.
Since:
BlackBerry API 6.0.0

setZIndex

void setZIndex(String zIndex)
               throws DOMException
Throws:
DOMException
Since:
BlackBerry API 6.0.0





Copyright 1999-2011 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Java is a trademark of Oracle America Inc. in the US and other countries.
Legal