class CSS2Properties

The <code> CSS2Properties </code> interface represents a convenience mechanism for retrieving and setting properties within a <code> CSSStyleDeclaration </code> . More...

Full nameDOM::CSS2Properties
Definition#include <css_extensions.h>
List of all Methods
Annotated List
Files
Globals
Hierarchy
Index

Public Methods


Detailed Description

The <code> CSS2Properties </code> interface represents a convenience mechanism for retrieving and setting properties within a <code> CSSStyleDeclaration </code> . The attributes of this interface correspond to all the <a href="http://www.w3.org/TR/REC-CSS2/propidx.html"> properties specified in CSS2 </a> . Getting an attribute of this interface is equivalent to calling the <code> getPropertyValue </code> method of the <code> CSSStyleDeclaration </code> interface. Setting an attribute of this interface is equivalent to calling the <code> setProperty </code> method of the <code> CSSStyleDeclaration </code> interface.

A compliant implementation is not required to implement the <code> CSS2Properties </code> 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 <code> CSSStyleDeclaration </code> interface to the <code> CSS2Properties </code> 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 <code> margin </code> property is set, for example, the <code> marginTop </code> , <code> marginRight </code> , <code> marginBottom </code> and <code> marginLeft </code> 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 <code> font </code> 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 <code> border-width </code> value of "medium" should be returned as such, not as "").

For some shorthand properties that take missing values from other sides, such as the <code> margin </code> , <code> padding </code> , and <code> border-[width|style|color] </code> 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 <code> font </code> property with a value of "menu", querying for the values of the component longhand properties should return the empty string.

DOM::DOMString  azimuth ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-azimuth"> azimuth property definition </a> in CSS2.

void  setAzimuth ( const DOM::DOMString & )

see azimuth

DOM::DOMString  background ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background"> background property definition </a> in CSS2.

void  setBackground ( const DOM::DOMString & )

see background

DOM::DOMString  backgroundAttachment ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-attachment"> background-attachment property definition </a> in CSS2.

void  setBackgroundAttachment ( const DOM::DOMString & )

see backgroundAttachment

DOM::DOMString  backgroundColor ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-color"> background-color property definition </a> in CSS2.

void  setBackgroundColor ( const DOM::DOMString & )

see backgroundColor

DOM::DOMString  backgroundImage ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-image"> background-image property definition </a> in CSS2.

void  setBackgroundImage ( const DOM::DOMString & )

see backgroundImage

DOM::DOMString  backgroundPosition ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-position"> background-position property definition </a> in CSS2.

void  setBackgroundPosition ( const DOM::DOMString & )

see backgroundPosition

DOM::DOMString  backgroundRepeat ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-background-repeat"> background-repeat property definition </a> in CSS2.

void  setBackgroundRepeat ( const DOM::DOMString & )

see backgroundRepeat

DOM::DOMString  border ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border"> border property definition </a> in CSS2.

void  setBorder ( const DOM::DOMString & )

see border

DOM::DOMString  borderCollapse ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-border-collapse"> border-collapse property definition </a> in CSS2.

void  setBorderCollapse ( const DOM::DOMString & )

see borderCollapse

DOM::DOMString  borderColor ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-color"> border-color property definition </a> in CSS2.

void  setBorderColor ( const DOM::DOMString & )

see borderColor

DOM::DOMString  borderSpacing ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-border-spacing"> border-spacing property definition </a> in CSS2.

void  setBorderSpacing ( const DOM::DOMString & )

see borderSpacing

DOM::DOMString  borderStyle ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-style"> border-style property definition </a> in CSS2.

void  setBorderStyle ( const DOM::DOMString & )

see borderStyle

DOM::DOMString  borderTop ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-top"> border-top property definition </a> in CSS2.

void  setBorderTop ( const DOM::DOMString & )

see borderTop

DOM::DOMString  borderRight ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-right"> border-right property definition </a> in CSS2.

void  setBorderRight ( const DOM::DOMString & )

see borderRight

DOM::DOMString  borderBottom ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-bottom"> border-bottom property definition </a> in CSS2.

void  setBorderBottom ( const DOM::DOMString & )

see borderBottom

DOM::DOMString  borderLeft ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-left"> border-left property definition </a> in CSS2.

void  setBorderLeft ( const DOM::DOMString & )

see borderLeft

DOM::DOMString  borderTopColor ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-top-color"> border-top-color property definition </a> in CSS2.

void  setBorderTopColor ( const DOM::DOMString & )

see borderTopColor

DOM::DOMString  borderRightColor ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-right-color"> border-right-color property definition </a> in CSS2.

void  setBorderRightColor ( const DOM::DOMString & )

see borderRightColor

DOM::DOMString  borderBottomColor ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/#propdef-border-bottom-color"> border-bottom-color property definition </a> in CSS2.

void  setBorderBottomColor ( const DOM::DOMString & )

see borderBottomColor

DOM::DOMString  borderLeftColor ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-left-color"> border-left-color property definition </a> in CSS2.

void  setBorderLeftColor ( const DOM::DOMString & )

see borderLeftColor

DOM::DOMString  borderTopStyle ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-top-style"> border-top-style property definition </a> in CSS2.

void  setBorderTopStyle ( const DOM::DOMString & )

see borderTopStyle

DOM::DOMString  borderRightStyle ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-right-style"> border-right-style property definition </a> in CSS2.

void  setBorderRightStyle ( const DOM::DOMString & )

see borderRightStyle

DOM::DOMString  borderBottomStyle ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-bottom-style"> border-bottom-style property definition </a> in CSS2.

void  setBorderBottomStyle ( const DOM::DOMString & )

see borderBottomStyle

DOM::DOMString  borderLeftStyle ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-left-style"> border-left-style property definition </a> in CSS2.

void  setBorderLeftStyle ( const DOM::DOMString & )

see borderLeftStyle

DOM::DOMString  borderTopWidth ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-top-width"> border-top-width property definition </a> in CSS2.

void  setBorderTopWidth ( const DOM::DOMString & )

see borderTopWidth

DOM::DOMString  borderRightWidth ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-right-width"> border-right-width property definition </a> in CSS2.

void  setBorderRightWidth ( const DOM::DOMString & )

see borderRightWidth

DOM::DOMString  borderBottomWidth ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-bottom-width"> border-bottom-width property definition </a> in CSS2.

void  setBorderBottomWidth ( const DOM::DOMString & )

see borderBottomWidth

DOM::DOMString  borderLeftWidth ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-left-width"> border-left-width property definition </a> in CSS2.

void  setBorderLeftWidth ( const DOM::DOMString & )

see borderLeftWidth

DOM::DOMString  borderWidth ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-border-width"> border-width property definition </a> in CSS2.

void  setBorderWidth ( const DOM::DOMString & )

see borderWidth

DOM::DOMString  bottom ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-bottom"> bottom property definition </a> in CSS2.

void  setBottom ( const DOM::DOMString & )

see bottom

DOM::DOMString  captionSide ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-caption-side"> caption-side property definition </a> in CSS2.

void  setCaptionSide ( const DOM::DOMString & )

see captionSide

DOM::DOMString  clear ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-clear"> clear property definition </a> in CSS2.

void  setClear ( const DOM::DOMString & )

see clear

DOM::DOMString  clip ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visufx#propdef-clip"> clip property definition </a> in CSS2.

void  setClip ( const DOM::DOMString & )

see clip

DOM::DOMString  color ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/colors.html#propdef-color"> color property definition </a> in CSS2.

void  setColor ( const DOM::DOMString & )

see color

DOM::DOMString  content ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-content"> content property definition </a> in CSS2.

void  setContent ( const DOM::DOMString & )

see content

DOM::DOMString  counterIncrement ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-counter-increment"> counter-increment property definition </a> in CSS2.

void  setCounterIncrement ( const DOM::DOMString & )

see counterIncrement

DOM::DOMString  counterReset ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-counter-reset"> counter-reset property definition </a> in CSS2.

void  setCounterReset ( const DOM::DOMString & )

see counterReset

DOM::DOMString  cue ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-cue"> cue property definition </a> in CSS2.

void  setCue ( const DOM::DOMString & )

see cue

DOM::DOMString  cueAfter ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-cue-fter"> cue-after property definition </a> in CSS2.

void  setCueAfter ( const DOM::DOMString & )

see cueAfter

DOM::DOMString  cueBefore ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-cue-before"> cue-before property definition </a> in CSS2.

void  setCueBefore ( const DOM::DOMString & )

see cueBefore

DOM::DOMString  cursor ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-cursor"> cursor property definition </a> in CSS2.

void  setCursor ( const DOM::DOMString & )

see cursor

DOM::DOMString  direction ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-direction"> direction property definition </a> in CSS2.

void  setDirection ( const DOM::DOMString & )

see direction

DOM::DOMString  display ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-display"> display property definition </a> in CSS2.

void  setDisplay ( const DOM::DOMString & )

see display

DOM::DOMString  elevation ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-elevation"> elevation property definition </a> in CSS2.

void  setElevation ( const DOM::DOMString & )

see elevation

DOM::DOMString  emptyCells ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-empty-cells"> empty-cells property definition </a> in CSS2.

void  setEmptyCells ( const DOM::DOMString & )

see emptyCells

DOM::DOMString  cssFloat ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-float"> float property definition </a> in CSS2.

void  setCssFloat ( const DOM::DOMString & )

see cssFloat

DOM::DOMString  font ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font"> font property definition </a> in CSS2.

void  setFont ( const DOM::DOMString & )

see font

DOM::DOMString  fontFamily ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-family"> font-family property definition </a> in CSS2.

void  setFontFamily ( const DOM::DOMString & )

see fontFamily

DOM::DOMString  fontSize ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-size"> font-size property definition </a> in CSS2.

void  setFontSize ( const DOM::DOMString & )

see fontSize

DOM::DOMString  fontSizeAdjust ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-size-adjust"> font-size-adjust property definition </a> in CSS2.

void  setFontSizeAdjust ( const DOM::DOMString & )

see fontSizeAdjust

DOM::DOMString  fontStretch ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-stretch"> font-stretch property definition </a> in CSS2.

void  setFontStretch ( const DOM::DOMString & )

see fontStretch

DOM::DOMString  fontStyle ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-style"> font-style property definition </a> in CSS2.

void  setFontStyle ( const DOM::DOMString & )

see fontStyle

DOM::DOMString  fontVariant ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-variant"> font-variant property definition </a> in CSS2.

void  setFontVariant ( const DOM::DOMString & )

see fontVariant

DOM::DOMString  fontWeight ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/fonts.html#propdef-font-weight"> font-weight property definition </a> in CSS2.

void  setFontWeight ( const DOM::DOMString & )

see fontWeight

DOM::DOMString  height ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-height"> height property definition </a> in CSS2.

void  setHeight ( const DOM::DOMString & )

see height

DOM::DOMString  left ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-left"> left property definition </a> in CSS2.

void  setLeft ( const DOM::DOMString & )

see left

DOM::DOMString  letterSpacing ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-letter-spacing"> letter-spacing property definition </a> in CSS2.

void  setLetterSpacing ( const DOM::DOMString & )

see letterSpacing

DOM::DOMString  lineHeight ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-line-height"> line-height property definition </a> in CSS2.

void  setLineHeight ( const DOM::DOMString & )

see lineHeight

DOM::DOMString  listStyle ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style"> list-style property definition </a> in CSS2.

void  setListStyle ( const DOM::DOMString & )

see listStyle

DOM::DOMString  listStyleImage ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style-image"> list-style-image property definition </a> in CSS2.

void  setListStyleImage ( const DOM::DOMString & )

see listStyleImage

DOM::DOMString  listStylePosition ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style-position"> list-style-position property definition </a> in CSS2.

void  setListStylePosition ( const DOM::DOMString & )

see listStylePosition

DOM::DOMString  listStyleType ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-list-style-type"> list-style-type property definition </a> in CSS2.

void  setListStyleType ( const DOM::DOMString & )

see listStyleType

DOM::DOMString  margin ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin"> margin property definition </a> in CSS2.

void  setMargin ( const DOM::DOMString & )

see margin

DOM::DOMString  marginTop ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin-top"> margin-top property definition </a> in CSS2.

void  setMarginTop ( const DOM::DOMString & )

see marginTop

DOM::DOMString  marginRight ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin-right"> margin-right property definition </a> in CSS2.

void  setMarginRight ( const DOM::DOMString & )

see marginRight

DOM::DOMString  marginBottom ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin-bottom"> margin-bottom property definition </a> in CSS2.

void  setMarginBottom ( const DOM::DOMString & )

see marginBottom

DOM::DOMString  marginLeft ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-margin-left"> margin-left property definition </a> in CSS2.

void  setMarginLeft ( const DOM::DOMString & )

see marginLeft

DOM::DOMString  markerOffset ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-marker-offset"> marker-offset property definition </a> in CSS2.

void  setMarkerOffset ( const DOM::DOMString & )

see markerOffset

DOM::DOMString  marks ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-marks"> marks property definition </a> in CSS2.

void  setMarks ( const DOM::DOMString & )

see marks

DOM::DOMString  maxHeight ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-max-height"> max-height property definition </a> in CSS2.

void  setMaxHeight ( const DOM::DOMString & )

see maxHeight

DOM::DOMString  maxWidth ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-max-width"> max-width property definition </a> in CSS2.

void  setMaxWidth ( const DOM::DOMString & )

see maxWidth

DOM::DOMString  minHeight ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-min-height"> min-height property definition </a> in CSS2.

void  setMinHeight ( const DOM::DOMString & )

see minHeight

DOM::DOMString  minWidth ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-min-width"> min-width property definition </a> in CSS2.

void  setMinWidth ( const DOM::DOMString & )

see minWidth

DOM::DOMString  orphans ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-orphans"> orphans property definition </a> in CSS2.

void  setOrphans ( const DOM::DOMString & )

see orphans

DOM::DOMString  outline ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-outline"> outline property definition </a> in CSS2.

void  setOutline ( const DOM::DOMString & )

see outline

DOM::DOMString  outlineColor ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-outline-color"> outline-color property definition </a> in CSS2.

void  setOutlineColor ( const DOM::DOMString & )

see outlineColor

DOM::DOMString  outlineStyle ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-outline-style"> outline-style property definition </a> in CSS2.

void  setOutlineStyle ( const DOM::DOMString & )

see outlineStyle

DOM::DOMString  outlineWidth ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/ui.html#propdef-outline-width"> outline-width property definition </a> in CSS2.

void  setOutlineWidth ( const DOM::DOMString & )

see outlineWidth

DOM::DOMString  overflow ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visufx.html#propdef-overflow"> overflow property definition </a> in CSS2.

void  setOverflow ( const DOM::DOMString & )

see overflow

DOM::DOMString  padding ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding"> padding property definition </a> in CSS2.

void  setPadding ( const DOM::DOMString & )

see padding

DOM::DOMString  paddingTop ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding-top"> padding-top property definition </a> in CSS2.

void  setPaddingTop ( const DOM::DOMString & )

see paddingTop

DOM::DOMString  paddingRight ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding-right"> padding-right property definition </a> in CSS2.

void  setPaddingRight ( const DOM::DOMString & )

see paddingRight

DOM::DOMString  paddingBottom ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding-bottom"> padding-bottom property definition </a> in CSS2.

void  setPaddingBottom ( const DOM::DOMString & )

see paddingBottom

DOM::DOMString  paddingLeft ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/box.html#propdef-padding-left"> padding-left property definition </a> in CSS2.

void  setPaddingLeft ( const DOM::DOMString & )

see paddingLeft

DOM::DOMString  page ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-page"> page property definition </a> in CSS2.

void  setPage ( const DOM::DOMString & )

see page

DOM::DOMString  pageBreakAfter ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-page-break-after"> page-break-after property definition </a> in CSS2.

void  setPageBreakAfter ( const DOM::DOMString & )

see pageBreakAfter

DOM::DOMString  pageBreakBefore ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-page-break-before"> page-break-before property definition </a> in CSS2.

void  setPageBreakBefore ( const DOM::DOMString & )

see pageBreakBefore

DOM::DOMString  pageBreakInside ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-page-break-inside"> page-break-inside property definition </a> in CSS2.

void  setPageBreakInside ( const DOM::DOMString & )

see pageBreakInside

DOM::DOMString  pause ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pause"> pause property definition </a> in CSS2.

void  setPause ( const DOM::DOMString & )

see pause

DOM::DOMString  pauseAfter ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pause-after"> pause-after property definition </a> in CSS2.

void  setPauseAfter ( const DOM::DOMString & )

see pauseAfter

DOM::DOMString  pauseBefore ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pause-before"> pause-before property definition </a> in CSS2.

void  setPauseBefore ( const DOM::DOMString & )

see pauseBefore

DOM::DOMString  pitch ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pitch"> pitch property definition </a> in CSS2.

void  setPitch ( const DOM::DOMString & )

see pitch

DOM::DOMString  pitchRange ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-pitch-range"> pitch-range property definition </a> in CSS2.

void  setPitchRange ( const DOM::DOMString & )

see pitchRange

DOM::DOMString  playDuring ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-play-during"> play-during property definition </a> in CSS2.

void  setPlayDuring ( const DOM::DOMString & )

see playDuring

DOM::DOMString  position ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-position"> position property definition </a> in CSS2.

void  setPosition ( const DOM::DOMString & )

see position

DOM::DOMString  quotes ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/generate.html#propdef-quotes"> quotes property definition </a> in CSS2.

void  setQuotes ( const DOM::DOMString & )

see quotes

DOM::DOMString  richness ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-richness"> richness property definition </a> in CSS2.

void  setRichness ( const DOM::DOMString & )

see richness

DOM::DOMString  right ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-right"> right property definition </a> in CSS2.

void  setRight ( const DOM::DOMString & )

see right

DOM::DOMString  size ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-size"> size property definition </a> in CSS2.

void  setSize ( const DOM::DOMString & )

see size

DOM::DOMString  speak ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-speak"> speak property definition </a> in CSS2.

void  setSpeak ( const DOM::DOMString & )

see speak

DOM::DOMString  speakHeader ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-speak-header"> speak-header property definition </a> in CSS2.

void  setSpeakHeader ( const DOM::DOMString & )

see speakHeader

DOM::DOMString  speakNumeral ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-speak-numeral"> speak-numeral property definition </a> in CSS2.

void  setSpeakNumeral ( const DOM::DOMString & )

see speakNumeral

DOM::DOMString  speakPunctuation ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-speak-punctuation"> speak-punctuation property definition </a> in CSS2.

void  setSpeakPunctuation ( const DOM::DOMString & )

see speakPunctuation

DOM::DOMString  speechRate ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-speech-rate"> speech-rate property definition </a> in CSS2.

void  setSpeechRate ( const DOM::DOMString & )

see speechRate

DOM::DOMString  stress ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-stress"> stress property definition </a> in CSS2.

void  setStress ( const DOM::DOMString & )

see stress

DOM::DOMString  tableLayout ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/tables.html#propdef-table-layout"> table-layout property definition </a> in CSS2.

void  setTableLayout ( const DOM::DOMString & )

see tableLayout

DOM::DOMString  textAlign ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-align"> text-align property definition </a> in CSS2.

void  setTextAlign ( const DOM::DOMString & )

see textAlign

DOM::DOMString  textDecoration ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-decoration"> text-decoration property definition </a> in CSS2.

void  setTextDecoration ( const DOM::DOMString & )

see textDecoration

DOM::DOMString  textIndent ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-indent"> text-indent property definition </a> in CSS2.

void  setTextIndent ( const DOM::DOMString & )

see textIndent

DOM::DOMString  textShadow ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-shadow"> text-shadow property definition </a> in CSS2.

void  setTextShadow ( const DOM::DOMString & )

see textShadow

DOM::DOMString  textTransform ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-text-transform"> text-transform property definition </a> in CSS2.

void  setTextTransform ( const DOM::DOMString & )

see textTransform

DOM::DOMString  top ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-top"> top property definition </a> in CSS2.

void  setTop ( const DOM::DOMString & )

see top

DOM::DOMString  unicodeBidi ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visuren.html#propdef-unicode-bidi"> unicode-bidi property definition </a> in CSS2.

void  setUnicodeBidi ( const DOM::DOMString & )

see unicodeBidi

DOM::DOMString  verticalAlign ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-vertical-align"> vertical-align property definition </a> in CSS2.

void  setVerticalAlign ( const DOM::DOMString & )

see verticalAlign

DOM::DOMString  visibility ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visufx.html#propdef-visibility"> visibility property definition </a> in CSS2.

void  setVisibility ( const DOM::DOMString & )

see visibility

DOM::DOMString  voiceFamily ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-voice-family"> voice-family property definition </a> in CSS2.

void  setVoiceFamily ( const DOM::DOMString & )

see voiceFamily

DOM::DOMString  volume ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/aural.html#propdef-volume"> volume property definition </a> in CSS2.

void  setVolume ( const DOM::DOMString & )

see volume

DOM::DOMString  whiteSpace ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-white-space"> white-space property definition </a> in CSS2.

void  setWhiteSpace ( const DOM::DOMString & )

see whiteSpace

DOM::DOMString  widows ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/page.html#propdef-widows"> widows property definition </a> in CSS2.

void  setWidows ( const DOM::DOMString & )

see widows

DOM::DOMString  width ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visudet.html#propdef-width"> width property definition </a> in CSS2.

void  setWidth ( const DOM::DOMString & )

see width

DOM::DOMString  wordSpacing ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/text.html#propdef-word-spacing"> word-spacing property definition </a> in CSS2.

void  setWordSpacing ( const DOM::DOMString & )

see wordSpacing

DOM::DOMString  zIndex ()

[const]

See the <a href="http://www.w3.org/TR/REC-CSS2/visufx.html#propdef-z-index"> z-index property definition </a> in CSS2.

void  setZIndex ( const DOM::DOMString & )

see zIndex


Generated by: ssk@tauon.ph.unimelb.EDU.AU on Wed May 23 05:55:52 2001, using kdoc 2.0a35.