Java Doc for CSS2Properties.java in  » 6.0-JDK-Core » w3c » org » w3c » dom » css » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » w3c » org.w3c.dom.css 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.w3c.dom.css.CSS2Properties

CSS2Properties
public interface CSS2Properties (Code)
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:
   DOM Level 2





Method Summary
public  StringgetAzimuth()
     See the azimuth property definition in CSS2.
public  StringgetBackground()
     See the background property definition in CSS2.
public  StringgetBackgroundAttachment()
     See the background-attachment property definition in CSS2.
public  StringgetBackgroundColor()
     See the background-color property definition in CSS2.
public  StringgetBackgroundImage()
     See the background-image property definition in CSS2.
public  StringgetBackgroundPosition()
     See the background-position property definition in CSS2.
public  StringgetBackgroundRepeat()
     See the background-repeat property definition in CSS2.
public  StringgetBorder()
     See the border property definition in CSS2.
public  StringgetBorderBottom()
     See the border-bottom property definition in CSS2.
public  StringgetBorderBottomColor()
     See the border-bottom-color property definition in CSS2.
public  StringgetBorderBottomStyle()
     See the border-bottom-style property definition in CSS2.
public  StringgetBorderBottomWidth()
     See the border-bottom-width property definition in CSS2.
public  StringgetBorderCollapse()
     See the border-collapse property definition in CSS2.
public  StringgetBorderColor()
     See the border-color property definition in CSS2.
public  StringgetBorderLeft()
     See the border-left property definition in CSS2.
public  StringgetBorderLeftColor()
     See the border-left-color property definition in CSS2.
public  StringgetBorderLeftStyle()
     See the border-left-style property definition in CSS2.
public  StringgetBorderLeftWidth()
     See the border-left-width property definition in CSS2.
public  StringgetBorderRight()
     See the border-right property definition in CSS2.
public  StringgetBorderRightColor()
     See the border-right-color property definition in CSS2.
public  StringgetBorderRightStyle()
     See the border-right-style property definition in CSS2.
public  StringgetBorderRightWidth()
     See the border-right-width property definition in CSS2.
public  StringgetBorderSpacing()
     See the border-spacing property definition in CSS2.
public  StringgetBorderStyle()
     See the border-style property definition in CSS2.
public  StringgetBorderTop()
     See the border-top property definition in CSS2.
public  StringgetBorderTopColor()
     See the border-top-color property definition in CSS2.
public  StringgetBorderTopStyle()
     See the border-top-style property definition in CSS2.
public  StringgetBorderTopWidth()
     See the border-top-width property definition in CSS2.
public  StringgetBorderWidth()
     See the border-width property definition in CSS2.
public  StringgetBottom()
     See the bottom property definition in CSS2.
public  StringgetCaptionSide()
     See the caption-side property definition in CSS2.
public  StringgetClear()
     See the clear property definition in CSS2.
public  StringgetClip()
     See the clip property definition in CSS2.
public  StringgetColor()
     See the color property definition in CSS2.
public  StringgetContent()
     See the content property definition in CSS2.
public  StringgetCounterIncrement()
     See the counter-increment property definition in CSS2.
public  StringgetCounterReset()
     See the counter-reset property definition in CSS2.
public  StringgetCssFloat()
     See the float property definition in CSS2.
public  StringgetCue()
     See the cue property definition in CSS2.
public  StringgetCueAfter()
     See the cue-after property definition in CSS2.
public  StringgetCueBefore()
     See the cue-before property definition in CSS2.
public  StringgetCursor()
     See the cursor property definition in CSS2.
public  StringgetDirection()
     See the direction property definition in CSS2.
public  StringgetDisplay()
     See the display property definition in CSS2.
public  StringgetElevation()
     See the elevation property definition in CSS2.
public  StringgetEmptyCells()
     See the empty-cells property definition in CSS2.
public  StringgetFont()
     See the font property definition in CSS2.
public  StringgetFontFamily()
     See the font-family property definition in CSS2.
public  StringgetFontSize()
     See the font-size property definition in CSS2.
public  StringgetFontSizeAdjust()
     See the font-size-adjust property definition in CSS2.
public  StringgetFontStretch()
     See the font-stretch property definition in CSS2.
public  StringgetFontStyle()
     See the font-style property definition in CSS2.
public  StringgetFontVariant()
     See the font-variant property definition in CSS2.
public  StringgetFontWeight()
     See the font-weight property definition in CSS2.
public  StringgetHeight()
     See the height property definition in CSS2.
public  StringgetLeft()
     See the left property definition in CSS2.
public  StringgetLetterSpacing()
     See the letter-spacing property definition in CSS2.
public  StringgetLineHeight()
     See the line-height property definition in CSS2.
public  StringgetListStyle()
     See the list-style property definition in CSS2.
public  StringgetListStyleImage()
     See the list-style-image property definition in CSS2.
public  StringgetListStylePosition()
     See the list-style-position property definition in CSS2.
public  StringgetListStyleType()
     See the list-style-type property definition in CSS2.
public  StringgetMargin()
     See the margin property definition in CSS2.
public  StringgetMarginBottom()
     See the margin-bottom property definition in CSS2.
public  StringgetMarginLeft()
     See the margin-left property definition in CSS2.
public  StringgetMarginRight()
     See the margin-right property definition in CSS2.
public  StringgetMarginTop()
     See the margin-top property definition in CSS2.
public  StringgetMarkerOffset()
     See the marker-offset property definition in CSS2.
public  StringgetMarks()
     See the marks property definition in CSS2.
public  StringgetMaxHeight()
     See the max-height property definition in CSS2.
public  StringgetMaxWidth()
     See the max-width property definition in CSS2.
public  StringgetMinHeight()
     See the min-height property definition in CSS2.
public  StringgetMinWidth()
     See the min-width property definition in CSS2.
public  StringgetOrphans()
     See the orphans property definition in CSS2.
public  StringgetOutline()
     See the outline property definition in CSS2.
public  StringgetOutlineColor()
     See the outline-color property definition in CSS2.
public  StringgetOutlineStyle()
     See the outline-style property definition in CSS2.
public  StringgetOutlineWidth()
     See the outline-width property definition in CSS2.
public  StringgetOverflow()
     See the overflow property definition in CSS2.
public  StringgetPadding()
     See the padding property definition in CSS2.
public  StringgetPaddingBottom()
     See the padding-bottom property definition in CSS2.
public  StringgetPaddingLeft()
     See the padding-left property definition in CSS2.
public  StringgetPaddingRight()
     See the padding-right property definition in CSS2.
public  StringgetPaddingTop()
     See the padding-top property definition in CSS2.
public  StringgetPage()
     See the page property definition in CSS2.
public  StringgetPageBreakAfter()
     See the page-break-after property definition in CSS2.
public  StringgetPageBreakBefore()
     See the page-break-before property definition in CSS2.
public  StringgetPageBreakInside()
     See the page-break-inside property definition in CSS2.
public  StringgetPause()
     See the pause property definition in CSS2.
public  StringgetPauseAfter()
     See the pause-after property definition in CSS2.
public  StringgetPauseBefore()
     See the pause-before property definition in CSS2.
public  StringgetPitch()
     See the pitch property definition in CSS2.
public  StringgetPitchRange()
     See the pitch-range property definition in CSS2.
public  StringgetPlayDuring()
     See the play-during property definition in CSS2.
public  StringgetPosition()
     See the position property definition in CSS2.
public  StringgetQuotes()
     See the quotes property definition in CSS2.
public  StringgetRichness()
     See the richness property definition in CSS2.
public  StringgetRight()
     See the right property definition in CSS2.
public  StringgetSize()
     See the size property definition in CSS2.
public  StringgetSpeak()
     See the speak property definition in CSS2.
public  StringgetSpeakHeader()
     See the speak-header property definition in CSS2.
public  StringgetSpeakNumeral()
     See the speak-numeral property definition in CSS2.
public  StringgetSpeakPunctuation()
     See the speak-punctuation property definition in CSS2.
public  StringgetSpeechRate()
     See the speech-rate property definition in CSS2.
public  StringgetStress()
     See the stress property definition in CSS2.
public  StringgetTableLayout()
     See the table-layout property definition in CSS2.
public  StringgetTextAlign()
     See the text-align property definition in CSS2.
public  StringgetTextDecoration()
     See the text-decoration property definition in CSS2.
public  StringgetTextIndent()
     See the text-indent property definition in CSS2.
public  StringgetTextShadow()
     See the text-shadow property definition in CSS2.
public  StringgetTextTransform()
     See the text-transform property definition in CSS2.
public  StringgetTop()
     See the top property definition in CSS2.
public  StringgetUnicodeBidi()
     See the unicode-bidi property definition in CSS2.
public  StringgetVerticalAlign()
     See the vertical-align property definition in CSS2.
public  StringgetVisibility()
     See the visibility property definition in CSS2.
public  StringgetVoiceFamily()
     See the voice-family property definition in CSS2.
public  StringgetVolume()
     See the volume property definition in CSS2.
public  StringgetWhiteSpace()
     See the white-space property definition in CSS2.
public  StringgetWidows()
     See the widows property definition in CSS2.
public  StringgetWidth()
     See the width property definition in CSS2.
public  StringgetWordSpacing()
     See the word-spacing property definition in CSS2.
public  StringgetZIndex()
     See the z-index property definition in CSS2.
public  voidsetAzimuth(String azimuth)
     See the azimuth property definition in CSS2.
public  voidsetBackground(String background)
     See the background property definition in CSS2.
public  voidsetBackgroundAttachment(String backgroundAttachment)
     See the background-attachment property definition in CSS2.
public  voidsetBackgroundColor(String backgroundColor)
     See the background-color property definition in CSS2.
public  voidsetBackgroundImage(String backgroundImage)
     See the background-image property definition in CSS2.
public  voidsetBackgroundPosition(String backgroundPosition)
     See the background-position property definition in CSS2.
public  voidsetBackgroundRepeat(String backgroundRepeat)
     See the background-repeat property definition in CSS2.
public  voidsetBorder(String border)
     See the border property definition in CSS2.
public  voidsetBorderBottom(String borderBottom)
     See the border-bottom property definition in CSS2.
public  voidsetBorderBottomColor(String borderBottomColor)
     See the border-bottom-color property definition in CSS2.
public  voidsetBorderBottomStyle(String borderBottomStyle)
     See the border-bottom-style property definition in CSS2.
public  voidsetBorderBottomWidth(String borderBottomWidth)
     See the border-bottom-width property definition in CSS2.
public  voidsetBorderCollapse(String borderCollapse)
     See the border-collapse property definition in CSS2.
public  voidsetBorderColor(String borderColor)
     See the border-color property definition in CSS2.
public  voidsetBorderLeft(String borderLeft)
     See the border-left property definition in CSS2.
public  voidsetBorderLeftColor(String borderLeftColor)
     See the border-left-color property definition in CSS2.
public  voidsetBorderLeftStyle(String borderLeftStyle)
     See the border-left-style property definition in CSS2.
public  voidsetBorderLeftWidth(String borderLeftWidth)
     See the border-left-width property definition in CSS2.
public  voidsetBorderRight(String borderRight)
     See the border-right property definition in CSS2.
public  voidsetBorderRightColor(String borderRightColor)
     See the border-right-color property definition in CSS2.
public  voidsetBorderRightStyle(String borderRightStyle)
     See the border-right-style property definition in CSS2.
public  voidsetBorderRightWidth(String borderRightWidth)
     See the border-right-width property definition in CSS2.
public  voidsetBorderSpacing(String borderSpacing)
     See the border-spacing property definition in CSS2.
public  voidsetBorderStyle(String borderStyle)
     See the border-style property definition in CSS2.
public  voidsetBorderTop(String borderTop)
     See the border-top property definition in CSS2.
public  voidsetBorderTopColor(String borderTopColor)
     See the border-top-color property definition in CSS2.
public  voidsetBorderTopStyle(String borderTopStyle)
     See the border-top-style property definition in CSS2.
public  voidsetBorderTopWidth(String borderTopWidth)
     See the border-top-width property definition in CSS2.
public  voidsetBorderWidth(String borderWidth)
     See the border-width property definition in CSS2.
public  voidsetBottom(String bottom)
     See the bottom property definition in CSS2.
public  voidsetCaptionSide(String captionSide)
     See the caption-side property definition in CSS2.
public  voidsetClear(String clear)
     See the clear property definition in CSS2.
public  voidsetClip(String clip)
     See the clip property definition in CSS2.
public  voidsetColor(String color)
     See the color property definition in CSS2.
public  voidsetContent(String content)
     See the content property definition in CSS2.
public  voidsetCounterIncrement(String counterIncrement)
     See the counter-increment property definition in CSS2.
public  voidsetCounterReset(String counterReset)
     See the counter-reset property definition in CSS2.
public  voidsetCssFloat(String cssFloat)
     See the float property definition in CSS2.
public  voidsetCue(String cue)
     See the cue property definition in CSS2.
public  voidsetCueAfter(String cueAfter)
     See the cue-after property definition in CSS2.
public  voidsetCueBefore(String cueBefore)
     See the cue-before property definition in CSS2.
public  voidsetCursor(String cursor)
     See the cursor property definition in CSS2.
public  voidsetDirection(String direction)
     See the direction property definition in CSS2.
public  voidsetDisplay(String display)
     See the display property definition in CSS2.
public  voidsetElevation(String elevation)
     See the elevation property definition in CSS2.
public  voidsetEmptyCells(String emptyCells)
     See the empty-cells property definition in CSS2.
public  voidsetFont(String font)
     See the font property definition in CSS2.
public  voidsetFontFamily(String fontFamily)
     See the font-family property definition in CSS2.
public  voidsetFontSize(String fontSize)
     See the font-size property definition in CSS2.
public  voidsetFontSizeAdjust(String fontSizeAdjust)
     See the font-size-adjust property definition in CSS2.
public  voidsetFontStretch(String fontStretch)
     See the font-stretch property definition in CSS2.
public  voidsetFontStyle(String fontStyle)
     See the font-style property definition in CSS2.
public  voidsetFontVariant(String fontVariant)
     See the font-variant property definition in CSS2.
public  voidsetFontWeight(String fontWeight)
     See the font-weight property definition in CSS2.
public  voidsetHeight(String height)
     See the height property definition in CSS2.
public  voidsetLeft(String left)
     See the left property definition in CSS2.
public  voidsetLetterSpacing(String letterSpacing)
     See the letter-spacing property definition in CSS2.
public  voidsetLineHeight(String lineHeight)
     See the line-height property definition in CSS2.
public  voidsetListStyle(String listStyle)
     See the list-style property definition in CSS2.
public  voidsetListStyleImage(String listStyleImage)
     See the list-style-image property definition in CSS2.
public  voidsetListStylePosition(String listStylePosition)
     See the list-style-position property definition in CSS2.
public  voidsetListStyleType(String listStyleType)
     See the list-style-type property definition in CSS2.
public  voidsetMargin(String margin)
     See the margin property definition in CSS2.
public  voidsetMarginBottom(String marginBottom)
     See the margin-bottom property definition in CSS2.
public  voidsetMarginLeft(String marginLeft)
     See the margin-left property definition in CSS2.
public  voidsetMarginRight(String marginRight)
     See the margin-right property definition in CSS2.
public  voidsetMarginTop(String marginTop)
     See the margin-top property definition in CSS2.
public  voidsetMarkerOffset(String markerOffset)
     See the marker-offset property definition in CSS2.
public  voidsetMarks(String marks)
     See the marks property definition in CSS2.
public  voidsetMaxHeight(String maxHeight)
     See the max-height property definition in CSS2.
public  voidsetMaxWidth(String maxWidth)
     See the max-width property definition in CSS2.
public  voidsetMinHeight(String minHeight)
     See the min-height property definition in CSS2.
public  voidsetMinWidth(String minWidth)
     See the min-width property definition in CSS2.
public  voidsetOrphans(String orphans)
     See the orphans property definition in CSS2.
public  voidsetOutline(String outline)
     See the outline property definition in CSS2.
public  voidsetOutlineColor(String outlineColor)
     See the outline-color property definition in CSS2.
public  voidsetOutlineStyle(String outlineStyle)
     See the outline-style property definition in CSS2.
public  voidsetOutlineWidth(String outlineWidth)
     See the outline-width property definition in CSS2.
public  voidsetOverflow(String overflow)
     See the overflow property definition in CSS2.
public  voidsetPadding(String padding)
     See the padding property definition in CSS2.
public  voidsetPaddingBottom(String paddingBottom)
     See the padding-bottom property definition in CSS2.
public  voidsetPaddingLeft(String paddingLeft)
     See the padding-left property definition in CSS2.
public  voidsetPaddingRight(String paddingRight)
     See the padding-right property definition in CSS2.
public  voidsetPaddingTop(String paddingTop)
     See the padding-top property definition in CSS2.
public  voidsetPage(String page)
     See the page property definition in CSS2.
public  voidsetPageBreakAfter(String pageBreakAfter)
     See the page-break-after property definition in CSS2.
public  voidsetPageBreakBefore(String pageBreakBefore)
     See the page-break-before property definition in CSS2.
public  voidsetPageBreakInside(String pageBreakInside)
     See the page-break-inside property definition in CSS2.
public  voidsetPause(String pause)
     See the pause property definition in CSS2.
public  voidsetPauseAfter(String pauseAfter)
     See the pause-after property definition in CSS2.
public  voidsetPauseBefore(String pauseBefore)
     See the pause-before property definition in CSS2.
public  voidsetPitch(String pitch)
     See the pitch property definition in CSS2.
public  voidsetPitchRange(String pitchRange)
     See the pitch-range property definition in CSS2.
public  voidsetPlayDuring(String playDuring)
     See the play-during property definition in CSS2.
public  voidsetPosition(String position)
     See the position property definition in CSS2.
public  voidsetQuotes(String quotes)
     See the quotes property definition in CSS2.
public  voidsetRichness(String richness)
     See the richness property definition in CSS2.
public  voidsetRight(String right)
     See the right property definition in CSS2.
public  voidsetSize(String size)
     See the size property definition in CSS2.
public  voidsetSpeak(String speak)
     See the speak property definition in CSS2.
public  voidsetSpeakHeader(String speakHeader)
     See the speak-header property definition in CSS2.
public  voidsetSpeakNumeral(String speakNumeral)
     See the speak-numeral property definition in CSS2.
public  voidsetSpeakPunctuation(String speakPunctuation)
     See the speak-punctuation property definition in CSS2.
public  voidsetSpeechRate(String speechRate)
     See the speech-rate property definition in CSS2.
public  voidsetStress(String stress)
     See the stress property definition in CSS2.
public  voidsetTableLayout(String tableLayout)
     See the table-layout property definition in CSS2.
public  voidsetTextAlign(String textAlign)
     See the text-align property definition in CSS2.
public  voidsetTextDecoration(String textDecoration)
     See the text-decoration property definition in CSS2.
public  voidsetTextIndent(String textIndent)
     See the text-indent property definition in CSS2.
public  voidsetTextShadow(String textShadow)
     See the text-shadow property definition in CSS2.
public  voidsetTextTransform(String textTransform)
     See the text-transform property definition in CSS2.
public  voidsetTop(String top)
     See the top property definition in CSS2.
public  voidsetUnicodeBidi(String unicodeBidi)
     See the unicode-bidi property definition in CSS2.
public  voidsetVerticalAlign(String verticalAlign)
     See the vertical-align property definition in CSS2.
public  voidsetVisibility(String visibility)
     See the visibility property definition in CSS2.
public  voidsetVoiceFamily(String voiceFamily)
     See the voice-family property definition in CSS2.
public  voidsetVolume(String volume)
     See the volume property definition in CSS2.
public  voidsetWhiteSpace(String whiteSpace)
     See the white-space property definition in CSS2.
public  voidsetWidows(String widows)
     See the widows property definition in CSS2.
public  voidsetWidth(String width)
     See the width property definition in CSS2.
public  voidsetWordSpacing(String wordSpacing)
     See the word-spacing property definition in CSS2.
public  voidsetZIndex(String zIndex)
     See the z-index property definition in CSS2.



Method Detail
getAzimuth
public String getAzimuth()(Code)
See the azimuth property definition in CSS2.



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



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



setAzimuth
public void setAzimuth(String azimuth) throws DOMException(Code)
See the azimuth property definition in CSS2.
exception:
  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.



setBackground
public void setBackground(String background) throws DOMException(Code)
See the background property definition in CSS2.
exception:
  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.



setBackgroundAttachment
public void setBackgroundAttachment(String backgroundAttachment) throws DOMException(Code)
See the background-attachment property definition in CSS2.
exception:
  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.



setBackgroundColor
public void setBackgroundColor(String backgroundColor) throws DOMException(Code)
See the background-color property definition in CSS2.
exception:
  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.



setBackgroundImage
public void setBackgroundImage(String backgroundImage) throws DOMException(Code)
See the background-image property definition in CSS2.
exception:
  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.



setBackgroundPosition
public void setBackgroundPosition(String backgroundPosition) throws DOMException(Code)
See the background-position property definition in CSS2.
exception:
  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.



setBackgroundRepeat
public void setBackgroundRepeat(String backgroundRepeat) throws DOMException(Code)
See the background-repeat property definition in CSS2.
exception:
  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.



setBorder
public void setBorder(String border) throws DOMException(Code)
See the border property definition in CSS2.
exception:
  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.



setBorderBottom
public void setBorderBottom(String borderBottom) throws DOMException(Code)
See the border-bottom property definition in CSS2.
exception:
  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.



setBorderBottomColor
public void setBorderBottomColor(String borderBottomColor) throws DOMException(Code)
See the border-bottom-color property definition in CSS2.
exception:
  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.



setBorderBottomStyle
public void setBorderBottomStyle(String borderBottomStyle) throws DOMException(Code)
See the border-bottom-style property definition in CSS2.
exception:
  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.



setBorderBottomWidth
public void setBorderBottomWidth(String borderBottomWidth) throws DOMException(Code)
See the border-bottom-width property definition in CSS2.
exception:
  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.



setBorderCollapse
public void setBorderCollapse(String borderCollapse) throws DOMException(Code)
See the border-collapse property definition in CSS2.
exception:
  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.



setBorderColor
public void setBorderColor(String borderColor) throws DOMException(Code)
See the border-color property definition in CSS2.
exception:
  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.



setBorderLeft
public void setBorderLeft(String borderLeft) throws DOMException(Code)
See the border-left property definition in CSS2.
exception:
  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.



setBorderLeftColor
public void setBorderLeftColor(String borderLeftColor) throws DOMException(Code)
See the border-left-color property definition in CSS2.
exception:
  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.



setBorderLeftStyle
public void setBorderLeftStyle(String borderLeftStyle) throws DOMException(Code)
See the border-left-style property definition in CSS2.
exception:
  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.



setBorderLeftWidth
public void setBorderLeftWidth(String borderLeftWidth) throws DOMException(Code)
See the border-left-width property definition in CSS2.
exception:
  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.



setBorderRight
public void setBorderRight(String borderRight) throws DOMException(Code)
See the border-right property definition in CSS2.
exception:
  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.



setBorderRightColor
public void setBorderRightColor(String borderRightColor) throws DOMException(Code)
See the border-right-color property definition in CSS2.
exception:
  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.



setBorderRightStyle
public void setBorderRightStyle(String borderRightStyle) throws DOMException(Code)
See the border-right-style property definition in CSS2.
exception:
  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.



setBorderRightWidth
public void setBorderRightWidth(String borderRightWidth) throws DOMException(Code)
See the border-right-width property definition in CSS2.
exception:
  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.



setBorderSpacing
public void setBorderSpacing(String borderSpacing) throws DOMException(Code)
See the border-spacing property definition in CSS2.
exception:
  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.



setBorderStyle
public void setBorderStyle(String borderStyle) throws DOMException(Code)
See the border-style property definition in CSS2.
exception:
  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.



setBorderTop
public void setBorderTop(String borderTop) throws DOMException(Code)
See the border-top property definition in CSS2.
exception:
  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.



setBorderTopColor
public void setBorderTopColor(String borderTopColor) throws DOMException(Code)
See the border-top-color property definition in CSS2.
exception:
  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.



setBorderTopStyle
public void setBorderTopStyle(String borderTopStyle) throws DOMException(Code)
See the border-top-style property definition in CSS2.
exception:
  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.



setBorderTopWidth
public void setBorderTopWidth(String borderTopWidth) throws DOMException(Code)
See the border-top-width property definition in CSS2.
exception:
  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.



setBorderWidth
public void setBorderWidth(String borderWidth) throws DOMException(Code)
See the border-width property definition in CSS2.
exception:
  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.



setBottom
public void setBottom(String bottom) throws DOMException(Code)
See the bottom property definition in CSS2.
exception:
  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.



setCaptionSide
public void setCaptionSide(String captionSide) throws DOMException(Code)
See the caption-side property definition in CSS2.
exception:
  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.



setClear
public void setClear(String clear) throws DOMException(Code)
See the clear property definition in CSS2.
exception:
  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.



setClip
public void setClip(String clip) throws DOMException(Code)
See the clip property definition in CSS2.
exception:
  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.



setColor
public void setColor(String color) throws DOMException(Code)
See the color property definition in CSS2.
exception:
  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.



setContent
public void setContent(String content) throws DOMException(Code)
See the content property definition in CSS2.
exception:
  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.



setCounterIncrement
public void setCounterIncrement(String counterIncrement) throws DOMException(Code)
See the counter-increment property definition in CSS2.
exception:
  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.



setCounterReset
public void setCounterReset(String counterReset) throws DOMException(Code)
See the counter-reset property definition in CSS2.
exception:
  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.



setCssFloat
public void setCssFloat(String cssFloat) throws DOMException(Code)
See the float property definition in CSS2.
exception:
  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.



setCue
public void setCue(String cue) throws DOMException(Code)
See the cue property definition in CSS2.
exception:
  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.



setCueAfter
public void setCueAfter(String cueAfter) throws DOMException(Code)
See the cue-after property definition in CSS2.
exception:
  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.



setCueBefore
public void setCueBefore(String cueBefore) throws DOMException(Code)
See the cue-before property definition in CSS2.
exception:
  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.



setCursor
public void setCursor(String cursor) throws DOMException(Code)
See the cursor property definition in CSS2.
exception:
  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.



setDirection
public void setDirection(String direction) throws DOMException(Code)
See the direction property definition in CSS2.
exception:
  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.



setDisplay
public void setDisplay(String display) throws DOMException(Code)
See the display property definition in CSS2.
exception:
  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.



setElevation
public void setElevation(String elevation) throws DOMException(Code)
See the elevation property definition in CSS2.
exception:
  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.



setEmptyCells
public void setEmptyCells(String emptyCells) throws DOMException(Code)
See the empty-cells property definition in CSS2.
exception:
  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.



setFont
public void setFont(String font) throws DOMException(Code)
See the font property definition in CSS2.
exception:
  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.



setFontFamily
public void setFontFamily(String fontFamily) throws DOMException(Code)
See the font-family property definition in CSS2.
exception:
  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.



setFontSize
public void setFontSize(String fontSize) throws DOMException(Code)
See the font-size property definition in CSS2.
exception:
  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.



setFontSizeAdjust
public void setFontSizeAdjust(String fontSizeAdjust) throws DOMException(Code)
See the font-size-adjust property definition in CSS2.
exception:
  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.



setFontStretch
public void setFontStretch(String fontStretch) throws DOMException(Code)
See the font-stretch property definition in CSS2.
exception:
  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.



setFontStyle
public void setFontStyle(String fontStyle) throws DOMException(Code)
See the font-style property definition in CSS2.
exception:
  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.



setFontVariant
public void setFontVariant(String fontVariant) throws DOMException(Code)
See the font-variant property definition in CSS2.
exception:
  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.



setFontWeight
public void setFontWeight(String fontWeight) throws DOMException(Code)
See the font-weight property definition in CSS2.
exception:
  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.



setHeight
public void setHeight(String height) throws DOMException(Code)
See the height property definition in CSS2.
exception:
  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.



setLeft
public void setLeft(String left) throws DOMException(Code)
See the left property definition in CSS2.
exception:
  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.



setLetterSpacing
public void setLetterSpacing(String letterSpacing) throws DOMException(Code)
See the letter-spacing property definition in CSS2.
exception:
  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.



setLineHeight
public void setLineHeight(String lineHeight) throws DOMException(Code)
See the line-height property definition in CSS2.
exception:
  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.



setListStyle
public void setListStyle(String listStyle) throws DOMException(Code)
See the list-style property definition in CSS2.
exception:
  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.



setListStyleImage
public void setListStyleImage(String listStyleImage) throws DOMException(Code)
See the list-style-image property definition in CSS2.
exception:
  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.



setListStylePosition
public void setListStylePosition(String listStylePosition) throws DOMException(Code)
See the list-style-position property definition in CSS2.
exception:
  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.



setListStyleType
public void setListStyleType(String listStyleType) throws DOMException(Code)
See the list-style-type property definition in CSS2.
exception:
  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.



setMargin
public void setMargin(String margin) throws DOMException(Code)
See the margin property definition in CSS2.
exception:
  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.



setMarginBottom
public void setMarginBottom(String marginBottom) throws DOMException(Code)
See the margin-bottom property definition in CSS2.
exception:
  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.



setMarginLeft
public void setMarginLeft(String marginLeft) throws DOMException(Code)
See the margin-left property definition in CSS2.
exception:
  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.



setMarginRight
public void setMarginRight(String marginRight) throws DOMException(Code)
See the margin-right property definition in CSS2.
exception:
  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.



setMarginTop
public void setMarginTop(String marginTop) throws DOMException(Code)
See the margin-top property definition in CSS2.
exception:
  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.



setMarkerOffset
public void setMarkerOffset(String markerOffset) throws DOMException(Code)
See the marker-offset property definition in CSS2.
exception:
  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.



setMarks
public void setMarks(String marks) throws DOMException(Code)
See the marks property definition in CSS2.
exception:
  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.



setMaxHeight
public void setMaxHeight(String maxHeight) throws DOMException(Code)
See the max-height property definition in CSS2.
exception:
  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.



setMaxWidth
public void setMaxWidth(String maxWidth) throws DOMException(Code)
See the max-width property definition in CSS2.
exception:
  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.



setMinHeight
public void setMinHeight(String minHeight) throws DOMException(Code)
See the min-height property definition in CSS2.
exception:
  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.



setMinWidth
public void setMinWidth(String minWidth) throws DOMException(Code)
See the min-width property definition in CSS2.
exception:
  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.



setOrphans
public void setOrphans(String orphans) throws DOMException(Code)
See the orphans property definition in CSS2.
exception:
  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.



setOutline
public void setOutline(String outline) throws DOMException(Code)
See the outline property definition in CSS2.
exception:
  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.



setOutlineColor
public void setOutlineColor(String outlineColor) throws DOMException(Code)
See the outline-color property definition in CSS2.
exception:
  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.



setOutlineStyle
public void setOutlineStyle(String outlineStyle) throws DOMException(Code)
See the outline-style property definition in CSS2.
exception:
  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.



setOutlineWidth
public void setOutlineWidth(String outlineWidth) throws DOMException(Code)
See the outline-width property definition in CSS2.
exception:
  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.



setOverflow
public void setOverflow(String overflow) throws DOMException(Code)
See the overflow property definition in CSS2.
exception:
  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.



setPadding
public void setPadding(String padding) throws DOMException(Code)
See the padding property definition in CSS2.
exception:
  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.



setPaddingBottom
public void setPaddingBottom(String paddingBottom) throws DOMException(Code)
See the padding-bottom property definition in CSS2.
exception:
  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.



setPaddingLeft
public void setPaddingLeft(String paddingLeft) throws DOMException(Code)
See the padding-left property definition in CSS2.
exception:
  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.



setPaddingRight
public void setPaddingRight(String paddingRight) throws DOMException(Code)
See the padding-right property definition in CSS2.
exception:
  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.



setPaddingTop
public void setPaddingTop(String paddingTop) throws DOMException(Code)
See the padding-top property definition in CSS2.
exception:
  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.



setPage
public void setPage(String page) throws DOMException(Code)
See the page property definition in CSS2.
exception:
  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.



setPageBreakAfter
public void setPageBreakAfter(String pageBreakAfter) throws DOMException(Code)
See the page-break-after property definition in CSS2.
exception:
  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.



setPageBreakBefore
public void setPageBreakBefore(String pageBreakBefore) throws DOMException(Code)
See the page-break-before property definition in CSS2.
exception:
  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.



setPageBreakInside
public void setPageBreakInside(String pageBreakInside) throws DOMException(Code)
See the page-break-inside property definition in CSS2.
exception:
  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.



setPause
public void setPause(String pause) throws DOMException(Code)
See the pause property definition in CSS2.
exception:
  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.



setPauseAfter
public void setPauseAfter(String pauseAfter) throws DOMException(Code)
See the pause-after property definition in CSS2.
exception:
  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.



setPauseBefore
public void setPauseBefore(String pauseBefore) throws DOMException(Code)
See the pause-before property definition in CSS2.
exception:
  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.



setPitch
public void setPitch(String pitch) throws DOMException(Code)
See the pitch property definition in CSS2.
exception:
  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.



setPitchRange
public void setPitchRange(String pitchRange) throws DOMException(Code)
See the pitch-range property definition in CSS2.
exception:
  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.



setPlayDuring
public void setPlayDuring(String playDuring) throws DOMException(Code)
See the play-during property definition in CSS2.
exception:
  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.



setPosition
public void setPosition(String position) throws DOMException(Code)
See the position property definition in CSS2.
exception:
  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.



setQuotes
public void setQuotes(String quotes) throws DOMException(Code)
See the quotes property definition in CSS2.
exception:
  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.



setRichness
public void setRichness(String richness) throws DOMException(Code)
See the richness property definition in CSS2.
exception:
  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.



setRight
public void setRight(String right) throws DOMException(Code)
See the right property definition in CSS2.
exception:
  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.



setSize
public void setSize(String size) throws DOMException(Code)
See the size property definition in CSS2.
exception:
  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.



setSpeak
public void setSpeak(String speak) throws DOMException(Code)
See the speak property definition in CSS2.
exception:
  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.



setSpeakHeader
public void setSpeakHeader(String speakHeader) throws DOMException(Code)
See the speak-header property definition in CSS2.
exception:
  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.



setSpeakNumeral
public void setSpeakNumeral(String speakNumeral) throws DOMException(Code)
See the speak-numeral property definition in CSS2.
exception:
  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.



setSpeakPunctuation
public void setSpeakPunctuation(String speakPunctuation) throws DOMException(Code)
See the speak-punctuation property definition in CSS2.
exception:
  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.



setSpeechRate
public void setSpeechRate(String speechRate) throws DOMException(Code)
See the speech-rate property definition in CSS2.
exception:
  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.



setStress
public void setStress(String stress) throws DOMException(Code)
See the stress property definition in CSS2.
exception:
  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.



setTableLayout
public void setTableLayout(String tableLayout) throws DOMException(Code)
See the table-layout property definition in CSS2.
exception:
  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.



setTextAlign
public void setTextAlign(String textAlign) throws DOMException(Code)
See the text-align property definition in CSS2.
exception:
  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.



setTextDecoration
public void setTextDecoration(String textDecoration) throws DOMException(Code)
See the text-decoration property definition in CSS2.
exception:
  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.



setTextIndent
public void setTextIndent(String textIndent) throws DOMException(Code)
See the text-indent property definition in CSS2.
exception:
  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.



setTextShadow
public void setTextShadow(String textShadow) throws DOMException(Code)
See the text-shadow property definition in CSS2.
exception:
  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.



setTextTransform
public void setTextTransform(String textTransform) throws DOMException(Code)
See the text-transform property definition in CSS2.
exception:
  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.



setTop
public void setTop(String top) throws DOMException(Code)
See the top property definition in CSS2.
exception:
  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.



setUnicodeBidi
public void setUnicodeBidi(String unicodeBidi) throws DOMException(Code)
See the unicode-bidi property definition in CSS2.
exception:
  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.



setVerticalAlign
public void setVerticalAlign(String verticalAlign) throws DOMException(Code)
See the vertical-align property definition in CSS2.
exception:
  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.



setVisibility
public void setVisibility(String visibility) throws DOMException(Code)
See the visibility property definition in CSS2.
exception:
  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.



setVoiceFamily
public void setVoiceFamily(String voiceFamily) throws DOMException(Code)
See the voice-family property definition in CSS2.
exception:
  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.



setVolume
public void setVolume(String volume) throws DOMException(Code)
See the volume property definition in CSS2.
exception:
  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.



setWhiteSpace
public void setWhiteSpace(String whiteSpace) throws DOMException(Code)
See the white-space property definition in CSS2.
exception:
  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.



setWidows
public void setWidows(String widows) throws DOMException(Code)
See the widows property definition in CSS2.
exception:
  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.



setWidth
public void setWidth(String width) throws DOMException(Code)
See the width property definition in CSS2.
exception:
  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.



setWordSpacing
public void setWordSpacing(String wordSpacing) throws DOMException(Code)
See the word-spacing property definition in CSS2.
exception:
  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.



setZIndex
public void setZIndex(String zIndex) throws DOMException(Code)
See the z-index property definition in CSS2.
exception:
  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.



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.