class CSS2Properties

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

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

Public Methods


Detailed Description

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 compliant implementation 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.

 CSS2Properties ()

CSS2Properties

 CSS2Properties (const CSS2Properties &other)

CSS2Properties

 CSS2Properties (CSS2PropertiesImpl *impl)

CSS2Properties

CSS2Properties &  operator = (const CSS2Properties &other)

operator =

 ~CSS2Properties ()

~CSS2Properties

DOM::DOMString  azimuth ()

azimuth

[const]

See the azimuth property definition in CSS2.

void  setAzimuth ( const DOM::DOMString & )

setAzimuth

see azimuth

DOM::DOMString  background ()

background

[const]

See the background property definition in CSS2.

void  setBackground ( const DOM::DOMString & )

setBackground

see background

DOM::DOMString  backgroundAttachment ()

backgroundAttachment

[const]

See the background-attachment property definition in CSS2.

void  setBackgroundAttachment ( const DOM::DOMString & )

setBackgroundAttachment

see backgroundAttachment

DOM::DOMString  backgroundColor ()

backgroundColor

[const]

See the background-color property definition in CSS2.

void  setBackgroundColor ( const DOM::DOMString & )

setBackgroundColor

see backgroundColor

DOM::DOMString  backgroundImage ()

backgroundImage

[const]

See the background-image property definition in CSS2.

void  setBackgroundImage ( const DOM::DOMString & )

setBackgroundImage

see backgroundImage

DOM::DOMString  backgroundPosition ()

backgroundPosition

[const]

See the background-position property definition in CSS2.

void  setBackgroundPosition ( const DOM::DOMString & )

setBackgroundPosition

see backgroundPosition

DOM::DOMString  backgroundRepeat ()

backgroundRepeat

[const]

See the background-repeat property definition in CSS2.

void  setBackgroundRepeat ( const DOM::DOMString & )

setBackgroundRepeat

see backgroundRepeat

DOM::DOMString  border ()

border

[const]

See the border property definition in CSS2.

void  setBorder ( const DOM::DOMString & )

setBorder

see border

DOM::DOMString  borderCollapse ()

borderCollapse

[const]

See the border-collapse property definition in CSS2.

void  setBorderCollapse ( const DOM::DOMString & )

setBorderCollapse

see borderCollapse

DOM::DOMString  borderColor ()

borderColor

[const]

See the border-color property definition in CSS2.

void  setBorderColor ( const DOM::DOMString & )

setBorderColor

see borderColor

DOM::DOMString  borderSpacing ()

borderSpacing

[const]

See the border-spacing property definition in CSS2.

void  setBorderSpacing ( const DOM::DOMString & )

setBorderSpacing

see borderSpacing

DOM::DOMString  borderStyle ()

borderStyle

[const]

See the border-style property definition in CSS2.

void  setBorderStyle ( const DOM::DOMString & )

setBorderStyle

see borderStyle

DOM::DOMString  borderTop ()

borderTop

[const]

See the border-top property definition in CSS2.

void  setBorderTop ( const DOM::DOMString & )

setBorderTop

see borderTop

DOM::DOMString  borderRight ()

borderRight

[const]

See the border-right property definition in CSS2.

void  setBorderRight ( const DOM::DOMString & )

setBorderRight

see borderRight

DOM::DOMString  borderBottom ()

borderBottom

[const]

See the border-bottom property definition in CSS2.

void  setBorderBottom ( const DOM::DOMString & )

setBorderBottom

see borderBottom

DOM::DOMString  borderLeft ()

borderLeft

[const]

See the border-left property definition in CSS2.

void  setBorderLeft ( const DOM::DOMString & )

setBorderLeft

see borderLeft

DOM::DOMString  borderTopColor ()

borderTopColor

[const]

See the border-top-color property definition in CSS2.

void  setBorderTopColor ( const DOM::DOMString & )

setBorderTopColor

see borderTopColor

DOM::DOMString  borderRightColor ()

borderRightColor

[const]

See the border-right-color property definition in CSS2.

void  setBorderRightColor ( const DOM::DOMString & )

setBorderRightColor

see borderRightColor

DOM::DOMString  borderBottomColor ()

borderBottomColor

[const]

See the border-bottom-color property definition in CSS2.

void  setBorderBottomColor ( const DOM::DOMString & )

setBorderBottomColor

see borderBottomColor

DOM::DOMString  borderLeftColor ()

borderLeftColor

[const]

See the border-left-color property definition in CSS2.

void  setBorderLeftColor ( const DOM::DOMString & )

setBorderLeftColor

see borderLeftColor

DOM::DOMString  borderTopStyle ()

borderTopStyle

[const]

See the border-top-style property definition in CSS2.

void  setBorderTopStyle ( const DOM::DOMString & )

setBorderTopStyle

see borderTopStyle

DOM::DOMString  borderRightStyle ()

borderRightStyle

[const]

See the border-right-style property definition in CSS2.

void  setBorderRightStyle ( const DOM::DOMString & )

setBorderRightStyle

see borderRightStyle

DOM::DOMString  borderBottomStyle ()

borderBottomStyle

[const]

See the border-bottom-style property definition in CSS2.

void  setBorderBottomStyle ( const DOM::DOMString & )

setBorderBottomStyle

see borderBottomStyle

DOM::DOMString  borderLeftStyle ()

borderLeftStyle

[const]

See the border-left-style property definition in CSS2.

void  setBorderLeftStyle ( const DOM::DOMString & )

setBorderLeftStyle

see borderLeftStyle

DOM::DOMString  borderTopWidth ()

borderTopWidth

[const]

See the border-top-width property definition in CSS2.

void  setBorderTopWidth ( const DOM::DOMString & )

setBorderTopWidth

see borderTopWidth

DOM::DOMString  borderRightWidth ()

borderRightWidth

[const]

See the border-right-width property definition in CSS2.

void  setBorderRightWidth ( const DOM::DOMString & )

setBorderRightWidth

see borderRightWidth

DOM::DOMString  borderBottomWidth ()

borderBottomWidth

[const]

See the border-bottom-width property definition in CSS2.

void  setBorderBottomWidth ( const DOM::DOMString & )

setBorderBottomWidth

see borderBottomWidth

DOM::DOMString  borderLeftWidth ()

borderLeftWidth

[const]

See the border-left-width property definition in CSS2.

void  setBorderLeftWidth ( const DOM::DOMString & )

setBorderLeftWidth

see borderLeftWidth

DOM::DOMString  borderWidth ()

borderWidth

[const]

See the border-width property definition in CSS2.

void  setBorderWidth ( const DOM::DOMString & )

setBorderWidth

see borderWidth

DOM::DOMString  bottom ()

bottom

[const]

See the bottom property definition in CSS2.

void  setBottom ( const DOM::DOMString & )

setBottom

see bottom

DOM::DOMString  captionSide ()

captionSide

[const]

See the caption-side property definition in CSS2.

void  setCaptionSide ( const DOM::DOMString & )

setCaptionSide

see captionSide

DOM::DOMString  clear ()

clear

[const]

See the clear property definition in CSS2.

void  setClear ( const DOM::DOMString & )

setClear

see clear

DOM::DOMString  clip ()

clip

[const]

See the clip property definition in CSS2.

void  setClip ( const DOM::DOMString & )

setClip

see clip

DOM::DOMString  color ()

color

[const]

See the color property definition in CSS2.

void  setColor ( const DOM::DOMString & )

setColor

see color

DOM::DOMString  content ()

content

[const]

See the content property definition in CSS2.

void  setContent ( const DOM::DOMString & )

setContent

see content

DOM::DOMString  counterIncrement ()

counterIncrement

[const]

See the counter-increment property definition in CSS2.

void  setCounterIncrement ( const DOM::DOMString & )

setCounterIncrement

see counterIncrement

DOM::DOMString  counterReset ()

counterReset

[const]

See the counter-reset property definition in CSS2.

void  setCounterReset ( const DOM::DOMString & )

setCounterReset

see counterReset

DOM::DOMString  cue ()

cue

[const]

See the cue property definition in CSS2.

void  setCue ( const DOM::DOMString & )

setCue

see cue

DOM::DOMString  cueAfter ()

cueAfter

[const]

See the cue-after property definition in CSS2.

void  setCueAfter ( const DOM::DOMString & )

setCueAfter

see cueAfter

DOM::DOMString  cueBefore ()

cueBefore

[const]

See the cue-before property definition in CSS2.

void  setCueBefore ( const DOM::DOMString & )

setCueBefore

see cueBefore

DOM::DOMString  cursor ()

cursor

[const]

See the cursor property definition in CSS2.

void  setCursor ( const DOM::DOMString & )

setCursor

see cursor

DOM::DOMString  direction ()

direction

[const]

See the direction property definition in CSS2.

void  setDirection ( const DOM::DOMString & )

setDirection

see direction

DOM::DOMString  display ()

display

[const]

See the display property definition in CSS2.

void  setDisplay ( const DOM::DOMString & )

setDisplay

see display

DOM::DOMString  elevation ()

elevation

[const]

See the elevation property definition in CSS2.

void  setElevation ( const DOM::DOMString & )

setElevation

see elevation

DOM::DOMString  emptyCells ()

emptyCells

[const]

See the empty-cells property definition in CSS2.

void  setEmptyCells ( const DOM::DOMString & )

setEmptyCells

see emptyCells

DOM::DOMString  cssFloat ()

cssFloat

[const]

See the float property definition in CSS2.

void  setCssFloat ( const DOM::DOMString & )

setCssFloat

see cssFloat

DOM::DOMString  font ()

font

[const]

See the font property definition in CSS2.

void  setFont ( const DOM::DOMString & )

setFont

see font

DOM::DOMString  fontFamily ()

fontFamily

[const]

See the font-family property definition in CSS2.

void  setFontFamily ( const DOM::DOMString & )

setFontFamily

see fontFamily

DOM::DOMString  fontSize ()

fontSize

[const]

See the font-size property definition in CSS2.

void  setFontSize ( const DOM::DOMString & )

setFontSize

see fontSize

DOM::DOMString  fontSizeAdjust ()

fontSizeAdjust

[const]

See the font-size-adjust property definition in CSS2.

void  setFontSizeAdjust ( const DOM::DOMString & )

setFontSizeAdjust

see fontSizeAdjust

DOM::DOMString  fontStretch ()

fontStretch

[const]

See the font-stretch property definition in CSS2.

void  setFontStretch ( const DOM::DOMString & )

setFontStretch

see fontStretch

DOM::DOMString  fontStyle ()

fontStyle

[const]

See the font-style property definition in CSS2.

void  setFontStyle ( const DOM::DOMString & )

setFontStyle

see fontStyle

DOM::DOMString  fontVariant ()

fontVariant

[const]

See the font-variant property definition in CSS2.

void  setFontVariant ( const DOM::DOMString & )

setFontVariant

see fontVariant

DOM::DOMString  fontWeight ()

fontWeight

[const]

See the font-weight property definition in CSS2.

void  setFontWeight ( const DOM::DOMString & )

setFontWeight

see fontWeight

DOM::DOMString  height ()

height

[const]

See the height property definition in CSS2.

void  setHeight ( const DOM::DOMString & )

setHeight

see height

DOM::DOMString  left ()

left

[const]

See the left property definition in CSS2.

void  setLeft ( const DOM::DOMString & )

setLeft

see left

DOM::DOMString  letterSpacing ()

letterSpacing

[const]

See the letter-spacing property definition in CSS2.

void  setLetterSpacing ( const DOM::DOMString & )

setLetterSpacing

see letterSpacing

DOM::DOMString  lineHeight ()

lineHeight

[const]

See the line-height property definition in CSS2.

void  setLineHeight ( const DOM::DOMString & )

setLineHeight

see lineHeight

DOM::DOMString  listStyle ()

listStyle

[const]

See the list-style property definition in CSS2.

void  setListStyle ( const DOM::DOMString & )

setListStyle

see listStyle

DOM::DOMString  listStyleImage ()

listStyleImage

[const]

See the list-style-image property definition in CSS2.

void  setListStyleImage ( const DOM::DOMString & )

setListStyleImage

see listStyleImage

DOM::DOMString  listStylePosition ()

listStylePosition

[const]

See the list-style-position property definition in CSS2.

void  setListStylePosition ( const DOM::DOMString & )

setListStylePosition

see listStylePosition

DOM::DOMString  listStyleType ()

listStyleType

[const]

See the list-style-type property definition in CSS2.

void  setListStyleType ( const DOM::DOMString & )

setListStyleType

see listStyleType

DOM::DOMString  margin ()

margin

[const]

See the margin property definition in CSS2.

void  setMargin ( const DOM::DOMString & )

setMargin

see margin

DOM::DOMString  marginTop ()

marginTop

[const]

See the margin-top property definition in CSS2.

void  setMarginTop ( const DOM::DOMString & )

setMarginTop

see marginTop

DOM::DOMString  marginRight ()

marginRight

[const]

See the margin-right property definition in CSS2.

void  setMarginRight ( const DOM::DOMString & )

setMarginRight

see marginRight

DOM::DOMString  marginBottom ()

marginBottom

[const]

See the margin-bottom property definition in CSS2.

void  setMarginBottom ( const DOM::DOMString & )

setMarginBottom

see marginBottom

DOM::DOMString  marginLeft ()

marginLeft

[const]

See the margin-left property definition in CSS2.

void  setMarginLeft ( const DOM::DOMString & )

setMarginLeft

see marginLeft

DOM::DOMString  markerOffset ()

markerOffset

[const]

See the marker-offset property definition in CSS2.

void  setMarkerOffset ( const DOM::DOMString & )

setMarkerOffset

see markerOffset

DOM::DOMString  marks ()

marks

[const]

See the marks property definition in CSS2.

void  setMarks ( const DOM::DOMString & )

setMarks

see marks

DOM::DOMString  maxHeight ()

maxHeight

[const]

See the max-height property definition in CSS2.

void  setMaxHeight ( const DOM::DOMString & )

setMaxHeight

see maxHeight

DOM::DOMString  maxWidth ()

maxWidth

[const]

See the max-width property definition in CSS2.

void  setMaxWidth ( const DOM::DOMString & )

setMaxWidth

see maxWidth

DOM::DOMString  minHeight ()

minHeight

[const]

See the min-height property definition in CSS2.

void  setMinHeight ( const DOM::DOMString & )

setMinHeight

see minHeight

DOM::DOMString  minWidth ()

minWidth

[const]

See the min-width property definition in CSS2.

void  setMinWidth ( const DOM::DOMString & )

setMinWidth

see minWidth

DOM::DOMString  orphans ()

orphans

[const]

See the orphans property definition in CSS2.

void  setOrphans ( const DOM::DOMString & )

setOrphans

see orphans

DOM::DOMString  outline ()

outline

[const]

See the outline property definition in CSS2.

void  setOutline ( const DOM::DOMString & )

setOutline

see outline

DOM::DOMString  outlineColor ()

outlineColor

[const]

See the outline-color property definition in CSS2.

void  setOutlineColor ( const DOM::DOMString & )

setOutlineColor

see outlineColor

DOM::DOMString  outlineStyle ()

outlineStyle

[const]

See the outline-style property definition in CSS2.

void  setOutlineStyle ( const DOM::DOMString & )

setOutlineStyle

see outlineStyle

DOM::DOMString  outlineWidth ()

outlineWidth

[const]

See the outline-width property definition in CSS2.

void  setOutlineWidth ( const DOM::DOMString & )

setOutlineWidth

see outlineWidth

DOM::DOMString  overflow ()

overflow

[const]

See the overflow property definition in CSS2.

void  setOverflow ( const DOM::DOMString & )

setOverflow

see overflow

DOM::DOMString  padding ()

padding

[const]

See the padding property definition in CSS2.

void  setPadding ( const DOM::DOMString & )

setPadding

see padding

DOM::DOMString  paddingTop ()

paddingTop

[const]

See the padding-top property definition in CSS2.

void  setPaddingTop ( const DOM::DOMString & )

setPaddingTop

see paddingTop

DOM::DOMString  paddingRight ()

paddingRight

[const]

See the padding-right property definition in CSS2.

void  setPaddingRight ( const DOM::DOMString & )

setPaddingRight

see paddingRight

DOM::DOMString  paddingBottom ()

paddingBottom

[const]

See the padding-bottom property definition in CSS2.

void  setPaddingBottom ( const DOM::DOMString & )

setPaddingBottom

see paddingBottom

DOM::DOMString  paddingLeft ()

paddingLeft

[const]

See the padding-left property definition in CSS2.

void  setPaddingLeft ( const DOM::DOMString & )

setPaddingLeft

see paddingLeft

DOM::DOMString  page ()

page

[const]

See the page property definition in CSS2.

void  setPage ( const DOM::DOMString & )

setPage

see page

DOM::DOMString  pageBreakAfter ()

pageBreakAfter

[const]

See the page-break-after property definition in CSS2.

void  setPageBreakAfter ( const DOM::DOMString & )

setPageBreakAfter

see pageBreakAfter

DOM::DOMString  pageBreakBefore ()

pageBreakBefore

[const]

See the page-break-before property definition in CSS2.

void  setPageBreakBefore ( const DOM::DOMString & )

setPageBreakBefore

see pageBreakBefore

DOM::DOMString  pageBreakInside ()

pageBreakInside

[const]

See the page-break-inside property definition in CSS2.

void  setPageBreakInside ( const DOM::DOMString & )

setPageBreakInside

see pageBreakInside

DOM::DOMString  pause ()

pause

[const]

See the pause property definition in CSS2.

void  setPause ( const DOM::DOMString & )

setPause

see pause

DOM::DOMString  pauseAfter ()

pauseAfter

[const]

See the pause-after property definition in CSS2.

void  setPauseAfter ( const DOM::DOMString & )

setPauseAfter

see pauseAfter

DOM::DOMString  pauseBefore ()

pauseBefore

[const]

See the pause-before property definition in CSS2.

void  setPauseBefore ( const DOM::DOMString & )

setPauseBefore

see pauseBefore

DOM::DOMString  pitch ()

pitch

[const]

See the pitch property definition in CSS2.

void  setPitch ( const DOM::DOMString & )

setPitch

see pitch

DOM::DOMString  pitchRange ()

pitchRange

[const]

See the pitch-range property definition in CSS2.

void  setPitchRange ( const DOM::DOMString & )

setPitchRange

see pitchRange

DOM::DOMString  playDuring ()

playDuring

[const]

See the play-during property definition in CSS2.

void  setPlayDuring ( const DOM::DOMString & )

setPlayDuring

see playDuring

DOM::DOMString  position ()

position

[const]

See the position property definition in CSS2.

void  setPosition ( const DOM::DOMString & )

setPosition

see position

DOM::DOMString  quotes ()

quotes

[const]

See the quotes property definition in CSS2.

void  setQuotes ( const DOM::DOMString & )

setQuotes

see quotes

DOM::DOMString  richness ()

richness

[const]

See the richness property definition in CSS2.

void  setRichness ( const DOM::DOMString & )

setRichness

see richness

DOM::DOMString  right ()

right

[const]

See the right property definition in CSS2.

void  setRight ( const DOM::DOMString & )

setRight

see right

DOM::DOMString  size ()

size

[const]

See the size property definition in CSS2.

void  setSize ( const DOM::DOMString & )

setSize

see size

DOM::DOMString  speak ()

speak

[const]

See the speak property definition in CSS2.

void  setSpeak ( const DOM::DOMString & )

setSpeak

see speak

DOM::DOMString  speakHeader ()

speakHeader

[const]

See the speak-header property definition in CSS2.

void  setSpeakHeader ( const DOM::DOMString & )

setSpeakHeader

see speakHeader

DOM::DOMString  speakNumeral ()

speakNumeral

[const]

See the speak-numeral property definition in CSS2.

void  setSpeakNumeral ( const DOM::DOMString & )

setSpeakNumeral

see speakNumeral

DOM::DOMString  speakPunctuation ()

speakPunctuation

[const]

See the speak-punctuation property definition in CSS2.

void  setSpeakPunctuation ( const DOM::DOMString & )

setSpeakPunctuation

see speakPunctuation

DOM::DOMString  speechRate ()

speechRate

[const]

See the speech-rate property definition in CSS2.

void  setSpeechRate ( const DOM::DOMString & )

setSpeechRate

see speechRate

DOM::DOMString  stress ()

stress

[const]

See the stress property definition in CSS2.

void  setStress ( const DOM::DOMString & )

setStress

see stress

DOM::DOMString  tableLayout ()

tableLayout

[const]

See the table-layout property definition in CSS2.

void  setTableLayout ( const DOM::DOMString & )

setTableLayout

see tableLayout

DOM::DOMString  textAlign ()

textAlign

[const]

See the text-align property definition in CSS2.

void  setTextAlign ( const DOM::DOMString & )

setTextAlign

see textAlign

DOM::DOMString  textDecoration ()

textDecoration

[const]

See the text-decoration property definition in CSS2.

void  setTextDecoration ( const DOM::DOMString & )

setTextDecoration

see textDecoration

DOM::DOMString  textIndent ()

textIndent

[const]

See the text-indent property definition in CSS2.

void  setTextIndent ( const DOM::DOMString & )

setTextIndent

see textIndent

DOM::DOMString  textShadow ()

textShadow

[const]

See the text-shadow property definition in CSS2.

void  setTextShadow ( const DOM::DOMString & )

setTextShadow

see textShadow

DOM::DOMString  textTransform ()

textTransform

[const]

See the text-transform property definition in CSS2.

void  setTextTransform ( const DOM::DOMString & )

setTextTransform

see textTransform

DOM::DOMString  top ()

top

[const]

See the top property definition in CSS2.

void  setTop ( const DOM::DOMString & )

setTop

see top

DOM::DOMString  unicodeBidi ()

unicodeBidi

[const]

See the unicode-bidi property definition in CSS2.

void  setUnicodeBidi ( const DOM::DOMString & )

setUnicodeBidi

see unicodeBidi

DOM::DOMString  verticalAlign ()

verticalAlign

[const]

See the vertical-align property definition in CSS2.

void  setVerticalAlign ( const DOM::DOMString & )

setVerticalAlign

see verticalAlign

DOM::DOMString  visibility ()

visibility

[const]

See the visibility property definition in CSS2.

void  setVisibility ( const DOM::DOMString & )

setVisibility

see visibility

DOM::DOMString  voiceFamily ()

voiceFamily

[const]

See the voice-family property definition in CSS2.

void  setVoiceFamily ( const DOM::DOMString & )

setVoiceFamily

see voiceFamily

DOM::DOMString  volume ()

volume

[const]

See the volume property definition in CSS2.

void  setVolume ( const DOM::DOMString & )

setVolume

see volume

DOM::DOMString  whiteSpace ()

whiteSpace

[const]

See the white-space property definition in CSS2.

void  setWhiteSpace ( const DOM::DOMString & )

setWhiteSpace

see whiteSpace

DOM::DOMString  widows ()

widows

[const]

See the widows property definition in CSS2.

void  setWidows ( const DOM::DOMString & )

setWidows

see widows

DOM::DOMString  width ()

width

[const]

See the width property definition in CSS2.

void  setWidth ( const DOM::DOMString & )

setWidth

see width

DOM::DOMString  wordSpacing ()

wordSpacing

[const]

See the word-spacing property definition in CSS2.

void  setWordSpacing ( const DOM::DOMString & )

setWordSpacing

see wordSpacing

DOM::DOMString  zIndex ()

zIndex

[const]

See the z-index property definition in CSS2.

void  setZIndex ( const DOM::DOMString & )

setZIndex

see zIndex


Generated by: dfaure on faure on Tue Apr 16 08:50:42 2002, using kdoc 2.0a53.