old/xalan-j/apidocs/org/w3c/dom/css/CSS2Properties.html (4,315 lines of code) (raw):
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc on Thu Nov 22 17:12:59 EST 2007 -->
<TITLE>
Xalan-Java 2.7.1: Interface CSS2Properties
</TITLE>
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
</HEAD>
<BODY BGCOLOR="white">
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_top"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/CSS2Properties.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/w3c/dom/css/Counter.html"><B>PREV CLASS</B></A>
<A HREF="../../../../org/w3c/dom/css/CSSCharsetRule.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="CSS2Properties.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
org.w3c.dom.css</FONT>
<BR>
Interface CSS2Properties</H2>
<HR>
<DL>
<DT>public interface <B>CSS2Properties</B></DL>
<P>
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 properties specified in CSS2. 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.
<p> A conformant implementation of the CSS module 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.
<p> 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.
<p> 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.
<p> 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.)
<p> 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 "").
<p> 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".
<p> 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.
<p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113'>Document Object Model (DOM) Level 2 Style Specification</a>.
<P>
<DL>
<DT><B>Since: </B><DD>DOM Level 2</DD>
</DL>
<HR>
<P>
<!-- ======== INNER CLASS SUMMARY ======== -->
<!-- =========== FIELD SUMMARY =========== -->
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=2><FONT SIZE="+2">
<B>Method Summary</B></FONT></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getAzimuth()">getAzimuth</A></B>()</CODE>
<BR>
See the azimuth property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBackground()">getBackground</A></B>()</CODE>
<BR>
See the background property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBackgroundAttachment()">getBackgroundAttachment</A></B>()</CODE>
<BR>
See the background-attachment property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBackgroundColor()">getBackgroundColor</A></B>()</CODE>
<BR>
See the background-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBackgroundImage()">getBackgroundImage</A></B>()</CODE>
<BR>
See the background-image property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBackgroundPosition()">getBackgroundPosition</A></B>()</CODE>
<BR>
See the background-position property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBackgroundRepeat()">getBackgroundRepeat</A></B>()</CODE>
<BR>
See the background-repeat property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorder()">getBorder</A></B>()</CODE>
<BR>
See the border property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderBottom()">getBorderBottom</A></B>()</CODE>
<BR>
See the border-bottom property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderBottomColor()">getBorderBottomColor</A></B>()</CODE>
<BR>
See the border-bottom-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderBottomStyle()">getBorderBottomStyle</A></B>()</CODE>
<BR>
See the border-bottom-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderBottomWidth()">getBorderBottomWidth</A></B>()</CODE>
<BR>
See the border-bottom-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderCollapse()">getBorderCollapse</A></B>()</CODE>
<BR>
See the border-collapse property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderColor()">getBorderColor</A></B>()</CODE>
<BR>
See the border-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderLeft()">getBorderLeft</A></B>()</CODE>
<BR>
See the border-left property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderLeftColor()">getBorderLeftColor</A></B>()</CODE>
<BR>
See the border-left-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderLeftStyle()">getBorderLeftStyle</A></B>()</CODE>
<BR>
See the border-left-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderLeftWidth()">getBorderLeftWidth</A></B>()</CODE>
<BR>
See the border-left-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderRight()">getBorderRight</A></B>()</CODE>
<BR>
See the border-right property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderRightColor()">getBorderRightColor</A></B>()</CODE>
<BR>
See the border-right-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderRightStyle()">getBorderRightStyle</A></B>()</CODE>
<BR>
See the border-right-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderRightWidth()">getBorderRightWidth</A></B>()</CODE>
<BR>
See the border-right-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderSpacing()">getBorderSpacing</A></B>()</CODE>
<BR>
See the border-spacing property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderStyle()">getBorderStyle</A></B>()</CODE>
<BR>
See the border-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderTop()">getBorderTop</A></B>()</CODE>
<BR>
See the border-top property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderTopColor()">getBorderTopColor</A></B>()</CODE>
<BR>
See the border-top-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderTopStyle()">getBorderTopStyle</A></B>()</CODE>
<BR>
See the border-top-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderTopWidth()">getBorderTopWidth</A></B>()</CODE>
<BR>
See the border-top-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBorderWidth()">getBorderWidth</A></B>()</CODE>
<BR>
See the border-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getBottom()">getBottom</A></B>()</CODE>
<BR>
See the bottom property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getCaptionSide()">getCaptionSide</A></B>()</CODE>
<BR>
See the caption-side property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getClear()">getClear</A></B>()</CODE>
<BR>
See the clear property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getClip()">getClip</A></B>()</CODE>
<BR>
See the clip property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getColor()">getColor</A></B>()</CODE>
<BR>
See the color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getContent()">getContent</A></B>()</CODE>
<BR>
See the content property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getCounterIncrement()">getCounterIncrement</A></B>()</CODE>
<BR>
See the counter-increment property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getCounterReset()">getCounterReset</A></B>()</CODE>
<BR>
See the counter-reset property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getCssFloat()">getCssFloat</A></B>()</CODE>
<BR>
See the float property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getCue()">getCue</A></B>()</CODE>
<BR>
See the cue property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getCueAfter()">getCueAfter</A></B>()</CODE>
<BR>
See the cue-after property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getCueBefore()">getCueBefore</A></B>()</CODE>
<BR>
See the cue-before property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getCursor()">getCursor</A></B>()</CODE>
<BR>
See the cursor property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getDirection()">getDirection</A></B>()</CODE>
<BR>
See the direction property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getDisplay()">getDisplay</A></B>()</CODE>
<BR>
See the display property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getElevation()">getElevation</A></B>()</CODE>
<BR>
See the elevation property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getEmptyCells()">getEmptyCells</A></B>()</CODE>
<BR>
See the empty-cells property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getFont()">getFont</A></B>()</CODE>
<BR>
See the font property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getFontFamily()">getFontFamily</A></B>()</CODE>
<BR>
See the font-family property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getFontSize()">getFontSize</A></B>()</CODE>
<BR>
See the font-size property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getFontSizeAdjust()">getFontSizeAdjust</A></B>()</CODE>
<BR>
See the font-size-adjust property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getFontStretch()">getFontStretch</A></B>()</CODE>
<BR>
See the font-stretch property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getFontStyle()">getFontStyle</A></B>()</CODE>
<BR>
See the font-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getFontVariant()">getFontVariant</A></B>()</CODE>
<BR>
See the font-variant property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getFontWeight()">getFontWeight</A></B>()</CODE>
<BR>
See the font-weight property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getHeight()">getHeight</A></B>()</CODE>
<BR>
See the height property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getLeft()">getLeft</A></B>()</CODE>
<BR>
See the left property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getLetterSpacing()">getLetterSpacing</A></B>()</CODE>
<BR>
See the letter-spacing property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getLineHeight()">getLineHeight</A></B>()</CODE>
<BR>
See the line-height property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getListStyle()">getListStyle</A></B>()</CODE>
<BR>
See the list-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getListStyleImage()">getListStyleImage</A></B>()</CODE>
<BR>
See the list-style-image property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getListStylePosition()">getListStylePosition</A></B>()</CODE>
<BR>
See the list-style-position property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getListStyleType()">getListStyleType</A></B>()</CODE>
<BR>
See the list-style-type property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMargin()">getMargin</A></B>()</CODE>
<BR>
See the margin property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMarginBottom()">getMarginBottom</A></B>()</CODE>
<BR>
See the margin-bottom property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMarginLeft()">getMarginLeft</A></B>()</CODE>
<BR>
See the margin-left property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMarginRight()">getMarginRight</A></B>()</CODE>
<BR>
See the margin-right property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMarginTop()">getMarginTop</A></B>()</CODE>
<BR>
See the margin-top property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMarkerOffset()">getMarkerOffset</A></B>()</CODE>
<BR>
See the marker-offset property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMarks()">getMarks</A></B>()</CODE>
<BR>
See the marks property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMaxHeight()">getMaxHeight</A></B>()</CODE>
<BR>
See the max-height property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMaxWidth()">getMaxWidth</A></B>()</CODE>
<BR>
See the max-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMinHeight()">getMinHeight</A></B>()</CODE>
<BR>
See the min-height property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getMinWidth()">getMinWidth</A></B>()</CODE>
<BR>
See the min-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getOrphans()">getOrphans</A></B>()</CODE>
<BR>
See the orphans property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getOutline()">getOutline</A></B>()</CODE>
<BR>
See the outline property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getOutlineColor()">getOutlineColor</A></B>()</CODE>
<BR>
See the outline-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getOutlineStyle()">getOutlineStyle</A></B>()</CODE>
<BR>
See the outline-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getOutlineWidth()">getOutlineWidth</A></B>()</CODE>
<BR>
See the outline-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getOverflow()">getOverflow</A></B>()</CODE>
<BR>
See the overflow property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPadding()">getPadding</A></B>()</CODE>
<BR>
See the padding property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPaddingBottom()">getPaddingBottom</A></B>()</CODE>
<BR>
See the padding-bottom property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPaddingLeft()">getPaddingLeft</A></B>()</CODE>
<BR>
See the padding-left property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPaddingRight()">getPaddingRight</A></B>()</CODE>
<BR>
See the padding-right property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPaddingTop()">getPaddingTop</A></B>()</CODE>
<BR>
See the padding-top property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPage()">getPage</A></B>()</CODE>
<BR>
See the page property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPageBreakAfter()">getPageBreakAfter</A></B>()</CODE>
<BR>
See the page-break-after property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPageBreakBefore()">getPageBreakBefore</A></B>()</CODE>
<BR>
See the page-break-before property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPageBreakInside()">getPageBreakInside</A></B>()</CODE>
<BR>
See the page-break-inside property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPause()">getPause</A></B>()</CODE>
<BR>
See the pause property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPauseAfter()">getPauseAfter</A></B>()</CODE>
<BR>
See the pause-after property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPauseBefore()">getPauseBefore</A></B>()</CODE>
<BR>
See the pause-before property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPitch()">getPitch</A></B>()</CODE>
<BR>
See the pitch property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPitchRange()">getPitchRange</A></B>()</CODE>
<BR>
See the pitch-range property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPlayDuring()">getPlayDuring</A></B>()</CODE>
<BR>
See the play-during property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getPosition()">getPosition</A></B>()</CODE>
<BR>
See the position property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getQuotes()">getQuotes</A></B>()</CODE>
<BR>
See the quotes property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getRichness()">getRichness</A></B>()</CODE>
<BR>
See the richness property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getRight()">getRight</A></B>()</CODE>
<BR>
See the right property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getSize()">getSize</A></B>()</CODE>
<BR>
See the size property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getSpeak()">getSpeak</A></B>()</CODE>
<BR>
See the speak property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getSpeakHeader()">getSpeakHeader</A></B>()</CODE>
<BR>
See the speak-header property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getSpeakNumeral()">getSpeakNumeral</A></B>()</CODE>
<BR>
See the speak-numeral property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getSpeakPunctuation()">getSpeakPunctuation</A></B>()</CODE>
<BR>
See the speak-punctuation property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getSpeechRate()">getSpeechRate</A></B>()</CODE>
<BR>
See the speech-rate property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getStress()">getStress</A></B>()</CODE>
<BR>
See the stress property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getTableLayout()">getTableLayout</A></B>()</CODE>
<BR>
See the table-layout property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getTextAlign()">getTextAlign</A></B>()</CODE>
<BR>
See the text-align property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getTextDecoration()">getTextDecoration</A></B>()</CODE>
<BR>
See the text-decoration property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getTextIndent()">getTextIndent</A></B>()</CODE>
<BR>
See the text-indent property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getTextShadow()">getTextShadow</A></B>()</CODE>
<BR>
See the text-shadow property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getTextTransform()">getTextTransform</A></B>()</CODE>
<BR>
See the text-transform property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getTop()">getTop</A></B>()</CODE>
<BR>
See the top property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getUnicodeBidi()">getUnicodeBidi</A></B>()</CODE>
<BR>
See the unicode-bidi property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getVerticalAlign()">getVerticalAlign</A></B>()</CODE>
<BR>
See the vertical-align property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getVisibility()">getVisibility</A></B>()</CODE>
<BR>
See the visibility property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getVoiceFamily()">getVoiceFamily</A></B>()</CODE>
<BR>
See the voice-family property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getVolume()">getVolume</A></B>()</CODE>
<BR>
See the volume property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getWhiteSpace()">getWhiteSpace</A></B>()</CODE>
<BR>
See the white-space property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getWidows()">getWidows</A></B>()</CODE>
<BR>
See the widows property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getWidth()">getWidth</A></B>()</CODE>
<BR>
See the width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getWordSpacing()">getWordSpacing</A></B>()</CODE>
<BR>
See the word-spacing property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#getZIndex()">getZIndex</A></B>()</CODE>
<BR>
See the z-index property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setAzimuth(java.lang.String)">setAzimuth</A></B>(java.lang.String azimuth)</CODE>
<BR>
See the azimuth property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBackground(java.lang.String)">setBackground</A></B>(java.lang.String background)</CODE>
<BR>
See the background property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBackgroundAttachment(java.lang.String)">setBackgroundAttachment</A></B>(java.lang.String backgroundAttachment)</CODE>
<BR>
See the background-attachment property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBackgroundColor(java.lang.String)">setBackgroundColor</A></B>(java.lang.String backgroundColor)</CODE>
<BR>
See the background-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBackgroundImage(java.lang.String)">setBackgroundImage</A></B>(java.lang.String backgroundImage)</CODE>
<BR>
See the background-image property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBackgroundPosition(java.lang.String)">setBackgroundPosition</A></B>(java.lang.String backgroundPosition)</CODE>
<BR>
See the background-position property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBackgroundRepeat(java.lang.String)">setBackgroundRepeat</A></B>(java.lang.String backgroundRepeat)</CODE>
<BR>
See the background-repeat property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorder(java.lang.String)">setBorder</A></B>(java.lang.String border)</CODE>
<BR>
See the border property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderBottom(java.lang.String)">setBorderBottom</A></B>(java.lang.String borderBottom)</CODE>
<BR>
See the border-bottom property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderBottomColor(java.lang.String)">setBorderBottomColor</A></B>(java.lang.String borderBottomColor)</CODE>
<BR>
See the border-bottom-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderBottomStyle(java.lang.String)">setBorderBottomStyle</A></B>(java.lang.String borderBottomStyle)</CODE>
<BR>
See the border-bottom-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderBottomWidth(java.lang.String)">setBorderBottomWidth</A></B>(java.lang.String borderBottomWidth)</CODE>
<BR>
See the border-bottom-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderCollapse(java.lang.String)">setBorderCollapse</A></B>(java.lang.String borderCollapse)</CODE>
<BR>
See the border-collapse property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderColor(java.lang.String)">setBorderColor</A></B>(java.lang.String borderColor)</CODE>
<BR>
See the border-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderLeft(java.lang.String)">setBorderLeft</A></B>(java.lang.String borderLeft)</CODE>
<BR>
See the border-left property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderLeftColor(java.lang.String)">setBorderLeftColor</A></B>(java.lang.String borderLeftColor)</CODE>
<BR>
See the border-left-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderLeftStyle(java.lang.String)">setBorderLeftStyle</A></B>(java.lang.String borderLeftStyle)</CODE>
<BR>
See the border-left-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderLeftWidth(java.lang.String)">setBorderLeftWidth</A></B>(java.lang.String borderLeftWidth)</CODE>
<BR>
See the border-left-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderRight(java.lang.String)">setBorderRight</A></B>(java.lang.String borderRight)</CODE>
<BR>
See the border-right property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderRightColor(java.lang.String)">setBorderRightColor</A></B>(java.lang.String borderRightColor)</CODE>
<BR>
See the border-right-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderRightStyle(java.lang.String)">setBorderRightStyle</A></B>(java.lang.String borderRightStyle)</CODE>
<BR>
See the border-right-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderRightWidth(java.lang.String)">setBorderRightWidth</A></B>(java.lang.String borderRightWidth)</CODE>
<BR>
See the border-right-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderSpacing(java.lang.String)">setBorderSpacing</A></B>(java.lang.String borderSpacing)</CODE>
<BR>
See the border-spacing property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderStyle(java.lang.String)">setBorderStyle</A></B>(java.lang.String borderStyle)</CODE>
<BR>
See the border-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderTop(java.lang.String)">setBorderTop</A></B>(java.lang.String borderTop)</CODE>
<BR>
See the border-top property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderTopColor(java.lang.String)">setBorderTopColor</A></B>(java.lang.String borderTopColor)</CODE>
<BR>
See the border-top-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderTopStyle(java.lang.String)">setBorderTopStyle</A></B>(java.lang.String borderTopStyle)</CODE>
<BR>
See the border-top-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderTopWidth(java.lang.String)">setBorderTopWidth</A></B>(java.lang.String borderTopWidth)</CODE>
<BR>
See the border-top-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBorderWidth(java.lang.String)">setBorderWidth</A></B>(java.lang.String borderWidth)</CODE>
<BR>
See the border-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setBottom(java.lang.String)">setBottom</A></B>(java.lang.String bottom)</CODE>
<BR>
See the bottom property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setCaptionSide(java.lang.String)">setCaptionSide</A></B>(java.lang.String captionSide)</CODE>
<BR>
See the caption-side property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setClear(java.lang.String)">setClear</A></B>(java.lang.String clear)</CODE>
<BR>
See the clear property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setClip(java.lang.String)">setClip</A></B>(java.lang.String clip)</CODE>
<BR>
See the clip property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setColor(java.lang.String)">setColor</A></B>(java.lang.String color)</CODE>
<BR>
See the color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setContent(java.lang.String)">setContent</A></B>(java.lang.String content)</CODE>
<BR>
See the content property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setCounterIncrement(java.lang.String)">setCounterIncrement</A></B>(java.lang.String counterIncrement)</CODE>
<BR>
See the counter-increment property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setCounterReset(java.lang.String)">setCounterReset</A></B>(java.lang.String counterReset)</CODE>
<BR>
See the counter-reset property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setCssFloat(java.lang.String)">setCssFloat</A></B>(java.lang.String cssFloat)</CODE>
<BR>
See the float property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setCue(java.lang.String)">setCue</A></B>(java.lang.String cue)</CODE>
<BR>
See the cue property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setCueAfter(java.lang.String)">setCueAfter</A></B>(java.lang.String cueAfter)</CODE>
<BR>
See the cue-after property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setCueBefore(java.lang.String)">setCueBefore</A></B>(java.lang.String cueBefore)</CODE>
<BR>
See the cue-before property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setCursor(java.lang.String)">setCursor</A></B>(java.lang.String cursor)</CODE>
<BR>
See the cursor property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setDirection(java.lang.String)">setDirection</A></B>(java.lang.String direction)</CODE>
<BR>
See the direction property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setDisplay(java.lang.String)">setDisplay</A></B>(java.lang.String display)</CODE>
<BR>
See the display property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setElevation(java.lang.String)">setElevation</A></B>(java.lang.String elevation)</CODE>
<BR>
See the elevation property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setEmptyCells(java.lang.String)">setEmptyCells</A></B>(java.lang.String emptyCells)</CODE>
<BR>
See the empty-cells property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setFont(java.lang.String)">setFont</A></B>(java.lang.String font)</CODE>
<BR>
See the font property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setFontFamily(java.lang.String)">setFontFamily</A></B>(java.lang.String fontFamily)</CODE>
<BR>
See the font-family property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setFontSize(java.lang.String)">setFontSize</A></B>(java.lang.String fontSize)</CODE>
<BR>
See the font-size property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setFontSizeAdjust(java.lang.String)">setFontSizeAdjust</A></B>(java.lang.String fontSizeAdjust)</CODE>
<BR>
See the font-size-adjust property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setFontStretch(java.lang.String)">setFontStretch</A></B>(java.lang.String fontStretch)</CODE>
<BR>
See the font-stretch property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setFontStyle(java.lang.String)">setFontStyle</A></B>(java.lang.String fontStyle)</CODE>
<BR>
See the font-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setFontVariant(java.lang.String)">setFontVariant</A></B>(java.lang.String fontVariant)</CODE>
<BR>
See the font-variant property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setFontWeight(java.lang.String)">setFontWeight</A></B>(java.lang.String fontWeight)</CODE>
<BR>
See the font-weight property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setHeight(java.lang.String)">setHeight</A></B>(java.lang.String height)</CODE>
<BR>
See the height property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setLeft(java.lang.String)">setLeft</A></B>(java.lang.String left)</CODE>
<BR>
See the left property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setLetterSpacing(java.lang.String)">setLetterSpacing</A></B>(java.lang.String letterSpacing)</CODE>
<BR>
See the letter-spacing property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setLineHeight(java.lang.String)">setLineHeight</A></B>(java.lang.String lineHeight)</CODE>
<BR>
See the line-height property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setListStyle(java.lang.String)">setListStyle</A></B>(java.lang.String listStyle)</CODE>
<BR>
See the list-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setListStyleImage(java.lang.String)">setListStyleImage</A></B>(java.lang.String listStyleImage)</CODE>
<BR>
See the list-style-image property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setListStylePosition(java.lang.String)">setListStylePosition</A></B>(java.lang.String listStylePosition)</CODE>
<BR>
See the list-style-position property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setListStyleType(java.lang.String)">setListStyleType</A></B>(java.lang.String listStyleType)</CODE>
<BR>
See the list-style-type property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMargin(java.lang.String)">setMargin</A></B>(java.lang.String margin)</CODE>
<BR>
See the margin property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMarginBottom(java.lang.String)">setMarginBottom</A></B>(java.lang.String marginBottom)</CODE>
<BR>
See the margin-bottom property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMarginLeft(java.lang.String)">setMarginLeft</A></B>(java.lang.String marginLeft)</CODE>
<BR>
See the margin-left property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMarginRight(java.lang.String)">setMarginRight</A></B>(java.lang.String marginRight)</CODE>
<BR>
See the margin-right property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMarginTop(java.lang.String)">setMarginTop</A></B>(java.lang.String marginTop)</CODE>
<BR>
See the margin-top property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMarkerOffset(java.lang.String)">setMarkerOffset</A></B>(java.lang.String markerOffset)</CODE>
<BR>
See the marker-offset property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMarks(java.lang.String)">setMarks</A></B>(java.lang.String marks)</CODE>
<BR>
See the marks property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMaxHeight(java.lang.String)">setMaxHeight</A></B>(java.lang.String maxHeight)</CODE>
<BR>
See the max-height property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMaxWidth(java.lang.String)">setMaxWidth</A></B>(java.lang.String maxWidth)</CODE>
<BR>
See the max-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMinHeight(java.lang.String)">setMinHeight</A></B>(java.lang.String minHeight)</CODE>
<BR>
See the min-height property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setMinWidth(java.lang.String)">setMinWidth</A></B>(java.lang.String minWidth)</CODE>
<BR>
See the min-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setOrphans(java.lang.String)">setOrphans</A></B>(java.lang.String orphans)</CODE>
<BR>
See the orphans property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setOutline(java.lang.String)">setOutline</A></B>(java.lang.String outline)</CODE>
<BR>
See the outline property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setOutlineColor(java.lang.String)">setOutlineColor</A></B>(java.lang.String outlineColor)</CODE>
<BR>
See the outline-color property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setOutlineStyle(java.lang.String)">setOutlineStyle</A></B>(java.lang.String outlineStyle)</CODE>
<BR>
See the outline-style property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setOutlineWidth(java.lang.String)">setOutlineWidth</A></B>(java.lang.String outlineWidth)</CODE>
<BR>
See the outline-width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setOverflow(java.lang.String)">setOverflow</A></B>(java.lang.String overflow)</CODE>
<BR>
See the overflow property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPadding(java.lang.String)">setPadding</A></B>(java.lang.String padding)</CODE>
<BR>
See the padding property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPaddingBottom(java.lang.String)">setPaddingBottom</A></B>(java.lang.String paddingBottom)</CODE>
<BR>
See the padding-bottom property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPaddingLeft(java.lang.String)">setPaddingLeft</A></B>(java.lang.String paddingLeft)</CODE>
<BR>
See the padding-left property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPaddingRight(java.lang.String)">setPaddingRight</A></B>(java.lang.String paddingRight)</CODE>
<BR>
See the padding-right property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPaddingTop(java.lang.String)">setPaddingTop</A></B>(java.lang.String paddingTop)</CODE>
<BR>
See the padding-top property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPage(java.lang.String)">setPage</A></B>(java.lang.String page)</CODE>
<BR>
See the page property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPageBreakAfter(java.lang.String)">setPageBreakAfter</A></B>(java.lang.String pageBreakAfter)</CODE>
<BR>
See the page-break-after property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPageBreakBefore(java.lang.String)">setPageBreakBefore</A></B>(java.lang.String pageBreakBefore)</CODE>
<BR>
See the page-break-before property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPageBreakInside(java.lang.String)">setPageBreakInside</A></B>(java.lang.String pageBreakInside)</CODE>
<BR>
See the page-break-inside property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPause(java.lang.String)">setPause</A></B>(java.lang.String pause)</CODE>
<BR>
See the pause property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPauseAfter(java.lang.String)">setPauseAfter</A></B>(java.lang.String pauseAfter)</CODE>
<BR>
See the pause-after property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPauseBefore(java.lang.String)">setPauseBefore</A></B>(java.lang.String pauseBefore)</CODE>
<BR>
See the pause-before property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPitch(java.lang.String)">setPitch</A></B>(java.lang.String pitch)</CODE>
<BR>
See the pitch property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPitchRange(java.lang.String)">setPitchRange</A></B>(java.lang.String pitchRange)</CODE>
<BR>
See the pitch-range property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPlayDuring(java.lang.String)">setPlayDuring</A></B>(java.lang.String playDuring)</CODE>
<BR>
See the play-during property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setPosition(java.lang.String)">setPosition</A></B>(java.lang.String position)</CODE>
<BR>
See the position property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setQuotes(java.lang.String)">setQuotes</A></B>(java.lang.String quotes)</CODE>
<BR>
See the quotes property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setRichness(java.lang.String)">setRichness</A></B>(java.lang.String richness)</CODE>
<BR>
See the richness property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setRight(java.lang.String)">setRight</A></B>(java.lang.String right)</CODE>
<BR>
See the right property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setSize(java.lang.String)">setSize</A></B>(java.lang.String size)</CODE>
<BR>
See the size property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setSpeak(java.lang.String)">setSpeak</A></B>(java.lang.String speak)</CODE>
<BR>
See the speak property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setSpeakHeader(java.lang.String)">setSpeakHeader</A></B>(java.lang.String speakHeader)</CODE>
<BR>
See the speak-header property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setSpeakNumeral(java.lang.String)">setSpeakNumeral</A></B>(java.lang.String speakNumeral)</CODE>
<BR>
See the speak-numeral property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setSpeakPunctuation(java.lang.String)">setSpeakPunctuation</A></B>(java.lang.String speakPunctuation)</CODE>
<BR>
See the speak-punctuation property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setSpeechRate(java.lang.String)">setSpeechRate</A></B>(java.lang.String speechRate)</CODE>
<BR>
See the speech-rate property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setStress(java.lang.String)">setStress</A></B>(java.lang.String stress)</CODE>
<BR>
See the stress property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setTableLayout(java.lang.String)">setTableLayout</A></B>(java.lang.String tableLayout)</CODE>
<BR>
See the table-layout property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setTextAlign(java.lang.String)">setTextAlign</A></B>(java.lang.String textAlign)</CODE>
<BR>
See the text-align property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setTextDecoration(java.lang.String)">setTextDecoration</A></B>(java.lang.String textDecoration)</CODE>
<BR>
See the text-decoration property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setTextIndent(java.lang.String)">setTextIndent</A></B>(java.lang.String textIndent)</CODE>
<BR>
See the text-indent property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setTextShadow(java.lang.String)">setTextShadow</A></B>(java.lang.String textShadow)</CODE>
<BR>
See the text-shadow property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setTextTransform(java.lang.String)">setTextTransform</A></B>(java.lang.String textTransform)</CODE>
<BR>
See the text-transform property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setTop(java.lang.String)">setTop</A></B>(java.lang.String top)</CODE>
<BR>
See the top property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setUnicodeBidi(java.lang.String)">setUnicodeBidi</A></B>(java.lang.String unicodeBidi)</CODE>
<BR>
See the unicode-bidi property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setVerticalAlign(java.lang.String)">setVerticalAlign</A></B>(java.lang.String verticalAlign)</CODE>
<BR>
See the vertical-align property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setVisibility(java.lang.String)">setVisibility</A></B>(java.lang.String visibility)</CODE>
<BR>
See the visibility property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setVoiceFamily(java.lang.String)">setVoiceFamily</A></B>(java.lang.String voiceFamily)</CODE>
<BR>
See the voice-family property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setVolume(java.lang.String)">setVolume</A></B>(java.lang.String volume)</CODE>
<BR>
See the volume property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setWhiteSpace(java.lang.String)">setWhiteSpace</A></B>(java.lang.String whiteSpace)</CODE>
<BR>
See the white-space property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setWidows(java.lang.String)">setWidows</A></B>(java.lang.String widows)</CODE>
<BR>
See the widows property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setWidth(java.lang.String)">setWidth</A></B>(java.lang.String width)</CODE>
<BR>
See the width property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setWordSpacing(java.lang.String)">setWordSpacing</A></B>(java.lang.String wordSpacing)</CODE>
<BR>
See the word-spacing property definition in CSS2.</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../org/w3c/dom/css/CSS2Properties.html#setZIndex(java.lang.String)">setZIndex</A></B>(java.lang.String zIndex)</CODE>
<BR>
See the z-index property definition in CSS2.</TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="getAzimuth()"><!-- --></A><H3>
getAzimuth</H3>
<PRE>
public java.lang.String <B>getAzimuth</B>()</PRE>
<DL>
<DD>See the azimuth property definition in CSS2.</DL>
<HR>
<A NAME="setAzimuth(java.lang.String)"><!-- --></A><H3>
setAzimuth</H3>
<PRE>
public void <B>setAzimuth</B>(java.lang.String azimuth)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the azimuth property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBackground()"><!-- --></A><H3>
getBackground</H3>
<PRE>
public java.lang.String <B>getBackground</B>()</PRE>
<DL>
<DD>See the background property definition in CSS2.</DL>
<HR>
<A NAME="setBackground(java.lang.String)"><!-- --></A><H3>
setBackground</H3>
<PRE>
public void <B>setBackground</B>(java.lang.String background)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the background property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBackgroundAttachment()"><!-- --></A><H3>
getBackgroundAttachment</H3>
<PRE>
public java.lang.String <B>getBackgroundAttachment</B>()</PRE>
<DL>
<DD>See the background-attachment property definition in CSS2.</DL>
<HR>
<A NAME="setBackgroundAttachment(java.lang.String)"><!-- --></A><H3>
setBackgroundAttachment</H3>
<PRE>
public void <B>setBackgroundAttachment</B>(java.lang.String backgroundAttachment)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the background-attachment property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBackgroundColor()"><!-- --></A><H3>
getBackgroundColor</H3>
<PRE>
public java.lang.String <B>getBackgroundColor</B>()</PRE>
<DL>
<DD>See the background-color property definition in CSS2.</DL>
<HR>
<A NAME="setBackgroundColor(java.lang.String)"><!-- --></A><H3>
setBackgroundColor</H3>
<PRE>
public void <B>setBackgroundColor</B>(java.lang.String backgroundColor)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the background-color property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBackgroundImage()"><!-- --></A><H3>
getBackgroundImage</H3>
<PRE>
public java.lang.String <B>getBackgroundImage</B>()</PRE>
<DL>
<DD>See the background-image property definition in CSS2.</DL>
<HR>
<A NAME="setBackgroundImage(java.lang.String)"><!-- --></A><H3>
setBackgroundImage</H3>
<PRE>
public void <B>setBackgroundImage</B>(java.lang.String backgroundImage)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the background-image property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBackgroundPosition()"><!-- --></A><H3>
getBackgroundPosition</H3>
<PRE>
public java.lang.String <B>getBackgroundPosition</B>()</PRE>
<DL>
<DD>See the background-position property definition in CSS2.</DL>
<HR>
<A NAME="setBackgroundPosition(java.lang.String)"><!-- --></A><H3>
setBackgroundPosition</H3>
<PRE>
public void <B>setBackgroundPosition</B>(java.lang.String backgroundPosition)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the background-position property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBackgroundRepeat()"><!-- --></A><H3>
getBackgroundRepeat</H3>
<PRE>
public java.lang.String <B>getBackgroundRepeat</B>()</PRE>
<DL>
<DD>See the background-repeat property definition in CSS2.</DL>
<HR>
<A NAME="setBackgroundRepeat(java.lang.String)"><!-- --></A><H3>
setBackgroundRepeat</H3>
<PRE>
public void <B>setBackgroundRepeat</B>(java.lang.String backgroundRepeat)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the background-repeat property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorder()"><!-- --></A><H3>
getBorder</H3>
<PRE>
public java.lang.String <B>getBorder</B>()</PRE>
<DL>
<DD>See the border property definition in CSS2.</DL>
<HR>
<A NAME="setBorder(java.lang.String)"><!-- --></A><H3>
setBorder</H3>
<PRE>
public void <B>setBorder</B>(java.lang.String border)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderCollapse()"><!-- --></A><H3>
getBorderCollapse</H3>
<PRE>
public java.lang.String <B>getBorderCollapse</B>()</PRE>
<DL>
<DD>See the border-collapse property definition in CSS2.</DL>
<HR>
<A NAME="setBorderCollapse(java.lang.String)"><!-- --></A><H3>
setBorderCollapse</H3>
<PRE>
public void <B>setBorderCollapse</B>(java.lang.String borderCollapse)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-collapse property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderColor()"><!-- --></A><H3>
getBorderColor</H3>
<PRE>
public java.lang.String <B>getBorderColor</B>()</PRE>
<DL>
<DD>See the border-color property definition in CSS2.</DL>
<HR>
<A NAME="setBorderColor(java.lang.String)"><!-- --></A><H3>
setBorderColor</H3>
<PRE>
public void <B>setBorderColor</B>(java.lang.String borderColor)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-color property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderSpacing()"><!-- --></A><H3>
getBorderSpacing</H3>
<PRE>
public java.lang.String <B>getBorderSpacing</B>()</PRE>
<DL>
<DD>See the border-spacing property definition in CSS2.</DL>
<HR>
<A NAME="setBorderSpacing(java.lang.String)"><!-- --></A><H3>
setBorderSpacing</H3>
<PRE>
public void <B>setBorderSpacing</B>(java.lang.String borderSpacing)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-spacing property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderStyle()"><!-- --></A><H3>
getBorderStyle</H3>
<PRE>
public java.lang.String <B>getBorderStyle</B>()</PRE>
<DL>
<DD>See the border-style property definition in CSS2.</DL>
<HR>
<A NAME="setBorderStyle(java.lang.String)"><!-- --></A><H3>
setBorderStyle</H3>
<PRE>
public void <B>setBorderStyle</B>(java.lang.String borderStyle)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-style property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderTop()"><!-- --></A><H3>
getBorderTop</H3>
<PRE>
public java.lang.String <B>getBorderTop</B>()</PRE>
<DL>
<DD>See the border-top property definition in CSS2.</DL>
<HR>
<A NAME="setBorderTop(java.lang.String)"><!-- --></A><H3>
setBorderTop</H3>
<PRE>
public void <B>setBorderTop</B>(java.lang.String borderTop)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-top property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderRight()"><!-- --></A><H3>
getBorderRight</H3>
<PRE>
public java.lang.String <B>getBorderRight</B>()</PRE>
<DL>
<DD>See the border-right property definition in CSS2.</DL>
<HR>
<A NAME="setBorderRight(java.lang.String)"><!-- --></A><H3>
setBorderRight</H3>
<PRE>
public void <B>setBorderRight</B>(java.lang.String borderRight)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-right property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderBottom()"><!-- --></A><H3>
getBorderBottom</H3>
<PRE>
public java.lang.String <B>getBorderBottom</B>()</PRE>
<DL>
<DD>See the border-bottom property definition in CSS2.</DL>
<HR>
<A NAME="setBorderBottom(java.lang.String)"><!-- --></A><H3>
setBorderBottom</H3>
<PRE>
public void <B>setBorderBottom</B>(java.lang.String borderBottom)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-bottom property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderLeft()"><!-- --></A><H3>
getBorderLeft</H3>
<PRE>
public java.lang.String <B>getBorderLeft</B>()</PRE>
<DL>
<DD>See the border-left property definition in CSS2.</DL>
<HR>
<A NAME="setBorderLeft(java.lang.String)"><!-- --></A><H3>
setBorderLeft</H3>
<PRE>
public void <B>setBorderLeft</B>(java.lang.String borderLeft)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-left property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderTopColor()"><!-- --></A><H3>
getBorderTopColor</H3>
<PRE>
public java.lang.String <B>getBorderTopColor</B>()</PRE>
<DL>
<DD>See the border-top-color property definition in CSS2.</DL>
<HR>
<A NAME="setBorderTopColor(java.lang.String)"><!-- --></A><H3>
setBorderTopColor</H3>
<PRE>
public void <B>setBorderTopColor</B>(java.lang.String borderTopColor)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-top-color property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderRightColor()"><!-- --></A><H3>
getBorderRightColor</H3>
<PRE>
public java.lang.String <B>getBorderRightColor</B>()</PRE>
<DL>
<DD>See the border-right-color property definition in CSS2.</DL>
<HR>
<A NAME="setBorderRightColor(java.lang.String)"><!-- --></A><H3>
setBorderRightColor</H3>
<PRE>
public void <B>setBorderRightColor</B>(java.lang.String borderRightColor)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-right-color property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderBottomColor()"><!-- --></A><H3>
getBorderBottomColor</H3>
<PRE>
public java.lang.String <B>getBorderBottomColor</B>()</PRE>
<DL>
<DD>See the border-bottom-color property definition in CSS2.</DL>
<HR>
<A NAME="setBorderBottomColor(java.lang.String)"><!-- --></A><H3>
setBorderBottomColor</H3>
<PRE>
public void <B>setBorderBottomColor</B>(java.lang.String borderBottomColor)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-bottom-color property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderLeftColor()"><!-- --></A><H3>
getBorderLeftColor</H3>
<PRE>
public java.lang.String <B>getBorderLeftColor</B>()</PRE>
<DL>
<DD>See the border-left-color property definition in CSS2.</DL>
<HR>
<A NAME="setBorderLeftColor(java.lang.String)"><!-- --></A><H3>
setBorderLeftColor</H3>
<PRE>
public void <B>setBorderLeftColor</B>(java.lang.String borderLeftColor)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-left-color property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderTopStyle()"><!-- --></A><H3>
getBorderTopStyle</H3>
<PRE>
public java.lang.String <B>getBorderTopStyle</B>()</PRE>
<DL>
<DD>See the border-top-style property definition in CSS2.</DL>
<HR>
<A NAME="setBorderTopStyle(java.lang.String)"><!-- --></A><H3>
setBorderTopStyle</H3>
<PRE>
public void <B>setBorderTopStyle</B>(java.lang.String borderTopStyle)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-top-style property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderRightStyle()"><!-- --></A><H3>
getBorderRightStyle</H3>
<PRE>
public java.lang.String <B>getBorderRightStyle</B>()</PRE>
<DL>
<DD>See the border-right-style property definition in CSS2.</DL>
<HR>
<A NAME="setBorderRightStyle(java.lang.String)"><!-- --></A><H3>
setBorderRightStyle</H3>
<PRE>
public void <B>setBorderRightStyle</B>(java.lang.String borderRightStyle)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-right-style property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderBottomStyle()"><!-- --></A><H3>
getBorderBottomStyle</H3>
<PRE>
public java.lang.String <B>getBorderBottomStyle</B>()</PRE>
<DL>
<DD>See the border-bottom-style property definition in CSS2.</DL>
<HR>
<A NAME="setBorderBottomStyle(java.lang.String)"><!-- --></A><H3>
setBorderBottomStyle</H3>
<PRE>
public void <B>setBorderBottomStyle</B>(java.lang.String borderBottomStyle)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-bottom-style property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderLeftStyle()"><!-- --></A><H3>
getBorderLeftStyle</H3>
<PRE>
public java.lang.String <B>getBorderLeftStyle</B>()</PRE>
<DL>
<DD>See the border-left-style property definition in CSS2.</DL>
<HR>
<A NAME="setBorderLeftStyle(java.lang.String)"><!-- --></A><H3>
setBorderLeftStyle</H3>
<PRE>
public void <B>setBorderLeftStyle</B>(java.lang.String borderLeftStyle)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-left-style property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderTopWidth()"><!-- --></A><H3>
getBorderTopWidth</H3>
<PRE>
public java.lang.String <B>getBorderTopWidth</B>()</PRE>
<DL>
<DD>See the border-top-width property definition in CSS2.</DL>
<HR>
<A NAME="setBorderTopWidth(java.lang.String)"><!-- --></A><H3>
setBorderTopWidth</H3>
<PRE>
public void <B>setBorderTopWidth</B>(java.lang.String borderTopWidth)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-top-width property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderRightWidth()"><!-- --></A><H3>
getBorderRightWidth</H3>
<PRE>
public java.lang.String <B>getBorderRightWidth</B>()</PRE>
<DL>
<DD>See the border-right-width property definition in CSS2.</DL>
<HR>
<A NAME="setBorderRightWidth(java.lang.String)"><!-- --></A><H3>
setBorderRightWidth</H3>
<PRE>
public void <B>setBorderRightWidth</B>(java.lang.String borderRightWidth)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-right-width property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderBottomWidth()"><!-- --></A><H3>
getBorderBottomWidth</H3>
<PRE>
public java.lang.String <B>getBorderBottomWidth</B>()</PRE>
<DL>
<DD>See the border-bottom-width property definition in CSS2.</DL>
<HR>
<A NAME="setBorderBottomWidth(java.lang.String)"><!-- --></A><H3>
setBorderBottomWidth</H3>
<PRE>
public void <B>setBorderBottomWidth</B>(java.lang.String borderBottomWidth)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-bottom-width property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderLeftWidth()"><!-- --></A><H3>
getBorderLeftWidth</H3>
<PRE>
public java.lang.String <B>getBorderLeftWidth</B>()</PRE>
<DL>
<DD>See the border-left-width property definition in CSS2.</DL>
<HR>
<A NAME="setBorderLeftWidth(java.lang.String)"><!-- --></A><H3>
setBorderLeftWidth</H3>
<PRE>
public void <B>setBorderLeftWidth</B>(java.lang.String borderLeftWidth)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-left-width property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBorderWidth()"><!-- --></A><H3>
getBorderWidth</H3>
<PRE>
public java.lang.String <B>getBorderWidth</B>()</PRE>
<DL>
<DD>See the border-width property definition in CSS2.</DL>
<HR>
<A NAME="setBorderWidth(java.lang.String)"><!-- --></A><H3>
setBorderWidth</H3>
<PRE>
public void <B>setBorderWidth</B>(java.lang.String borderWidth)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the border-width property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getBottom()"><!-- --></A><H3>
getBottom</H3>
<PRE>
public java.lang.String <B>getBottom</B>()</PRE>
<DL>
<DD>See the bottom property definition in CSS2.</DL>
<HR>
<A NAME="setBottom(java.lang.String)"><!-- --></A><H3>
setBottom</H3>
<PRE>
public void <B>setBottom</B>(java.lang.String bottom)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the bottom property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getCaptionSide()"><!-- --></A><H3>
getCaptionSide</H3>
<PRE>
public java.lang.String <B>getCaptionSide</B>()</PRE>
<DL>
<DD>See the caption-side property definition in CSS2.</DL>
<HR>
<A NAME="setCaptionSide(java.lang.String)"><!-- --></A><H3>
setCaptionSide</H3>
<PRE>
public void <B>setCaptionSide</B>(java.lang.String captionSide)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the caption-side property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getClear()"><!-- --></A><H3>
getClear</H3>
<PRE>
public java.lang.String <B>getClear</B>()</PRE>
<DL>
<DD>See the clear property definition in CSS2.</DL>
<HR>
<A NAME="setClear(java.lang.String)"><!-- --></A><H3>
setClear</H3>
<PRE>
public void <B>setClear</B>(java.lang.String clear)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the clear property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getClip()"><!-- --></A><H3>
getClip</H3>
<PRE>
public java.lang.String <B>getClip</B>()</PRE>
<DL>
<DD>See the clip property definition in CSS2.</DL>
<HR>
<A NAME="setClip(java.lang.String)"><!-- --></A><H3>
setClip</H3>
<PRE>
public void <B>setClip</B>(java.lang.String clip)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the clip property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getColor()"><!-- --></A><H3>
getColor</H3>
<PRE>
public java.lang.String <B>getColor</B>()</PRE>
<DL>
<DD>See the color property definition in CSS2.</DL>
<HR>
<A NAME="setColor(java.lang.String)"><!-- --></A><H3>
setColor</H3>
<PRE>
public void <B>setColor</B>(java.lang.String color)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the color property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getContent()"><!-- --></A><H3>
getContent</H3>
<PRE>
public java.lang.String <B>getContent</B>()</PRE>
<DL>
<DD>See the content property definition in CSS2.</DL>
<HR>
<A NAME="setContent(java.lang.String)"><!-- --></A><H3>
setContent</H3>
<PRE>
public void <B>setContent</B>(java.lang.String content)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the content property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getCounterIncrement()"><!-- --></A><H3>
getCounterIncrement</H3>
<PRE>
public java.lang.String <B>getCounterIncrement</B>()</PRE>
<DL>
<DD>See the counter-increment property definition in CSS2.</DL>
<HR>
<A NAME="setCounterIncrement(java.lang.String)"><!-- --></A><H3>
setCounterIncrement</H3>
<PRE>
public void <B>setCounterIncrement</B>(java.lang.String counterIncrement)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the counter-increment property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getCounterReset()"><!-- --></A><H3>
getCounterReset</H3>
<PRE>
public java.lang.String <B>getCounterReset</B>()</PRE>
<DL>
<DD>See the counter-reset property definition in CSS2.</DL>
<HR>
<A NAME="setCounterReset(java.lang.String)"><!-- --></A><H3>
setCounterReset</H3>
<PRE>
public void <B>setCounterReset</B>(java.lang.String counterReset)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the counter-reset property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getCue()"><!-- --></A><H3>
getCue</H3>
<PRE>
public java.lang.String <B>getCue</B>()</PRE>
<DL>
<DD>See the cue property definition in CSS2.</DL>
<HR>
<A NAME="setCue(java.lang.String)"><!-- --></A><H3>
setCue</H3>
<PRE>
public void <B>setCue</B>(java.lang.String cue)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the cue property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getCueAfter()"><!-- --></A><H3>
getCueAfter</H3>
<PRE>
public java.lang.String <B>getCueAfter</B>()</PRE>
<DL>
<DD>See the cue-after property definition in CSS2.</DL>
<HR>
<A NAME="setCueAfter(java.lang.String)"><!-- --></A><H3>
setCueAfter</H3>
<PRE>
public void <B>setCueAfter</B>(java.lang.String cueAfter)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the cue-after property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getCueBefore()"><!-- --></A><H3>
getCueBefore</H3>
<PRE>
public java.lang.String <B>getCueBefore</B>()</PRE>
<DL>
<DD>See the cue-before property definition in CSS2.</DL>
<HR>
<A NAME="setCueBefore(java.lang.String)"><!-- --></A><H3>
setCueBefore</H3>
<PRE>
public void <B>setCueBefore</B>(java.lang.String cueBefore)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the cue-before property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getCursor()"><!-- --></A><H3>
getCursor</H3>
<PRE>
public java.lang.String <B>getCursor</B>()</PRE>
<DL>
<DD>See the cursor property definition in CSS2.</DL>
<HR>
<A NAME="setCursor(java.lang.String)"><!-- --></A><H3>
setCursor</H3>
<PRE>
public void <B>setCursor</B>(java.lang.String cursor)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the cursor property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getDirection()"><!-- --></A><H3>
getDirection</H3>
<PRE>
public java.lang.String <B>getDirection</B>()</PRE>
<DL>
<DD>See the direction property definition in CSS2.</DL>
<HR>
<A NAME="setDirection(java.lang.String)"><!-- --></A><H3>
setDirection</H3>
<PRE>
public void <B>setDirection</B>(java.lang.String direction)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the direction property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getDisplay()"><!-- --></A><H3>
getDisplay</H3>
<PRE>
public java.lang.String <B>getDisplay</B>()</PRE>
<DL>
<DD>See the display property definition in CSS2.</DL>
<HR>
<A NAME="setDisplay(java.lang.String)"><!-- --></A><H3>
setDisplay</H3>
<PRE>
public void <B>setDisplay</B>(java.lang.String display)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the display property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getElevation()"><!-- --></A><H3>
getElevation</H3>
<PRE>
public java.lang.String <B>getElevation</B>()</PRE>
<DL>
<DD>See the elevation property definition in CSS2.</DL>
<HR>
<A NAME="setElevation(java.lang.String)"><!-- --></A><H3>
setElevation</H3>
<PRE>
public void <B>setElevation</B>(java.lang.String elevation)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the elevation property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getEmptyCells()"><!-- --></A><H3>
getEmptyCells</H3>
<PRE>
public java.lang.String <B>getEmptyCells</B>()</PRE>
<DL>
<DD>See the empty-cells property definition in CSS2.</DL>
<HR>
<A NAME="setEmptyCells(java.lang.String)"><!-- --></A><H3>
setEmptyCells</H3>
<PRE>
public void <B>setEmptyCells</B>(java.lang.String emptyCells)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the empty-cells property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getCssFloat()"><!-- --></A><H3>
getCssFloat</H3>
<PRE>
public java.lang.String <B>getCssFloat</B>()</PRE>
<DL>
<DD>See the float property definition in CSS2.</DL>
<HR>
<A NAME="setCssFloat(java.lang.String)"><!-- --></A><H3>
setCssFloat</H3>
<PRE>
public void <B>setCssFloat</B>(java.lang.String cssFloat)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the float property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getFont()"><!-- --></A><H3>
getFont</H3>
<PRE>
public java.lang.String <B>getFont</B>()</PRE>
<DL>
<DD>See the font property definition in CSS2.</DL>
<HR>
<A NAME="setFont(java.lang.String)"><!-- --></A><H3>
setFont</H3>
<PRE>
public void <B>setFont</B>(java.lang.String font)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the font property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getFontFamily()"><!-- --></A><H3>
getFontFamily</H3>
<PRE>
public java.lang.String <B>getFontFamily</B>()</PRE>
<DL>
<DD>See the font-family property definition in CSS2.</DL>
<HR>
<A NAME="setFontFamily(java.lang.String)"><!-- --></A><H3>
setFontFamily</H3>
<PRE>
public void <B>setFontFamily</B>(java.lang.String fontFamily)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the font-family property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getFontSize()"><!-- --></A><H3>
getFontSize</H3>
<PRE>
public java.lang.String <B>getFontSize</B>()</PRE>
<DL>
<DD>See the font-size property definition in CSS2.</DL>
<HR>
<A NAME="setFontSize(java.lang.String)"><!-- --></A><H3>
setFontSize</H3>
<PRE>
public void <B>setFontSize</B>(java.lang.String fontSize)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the font-size property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getFontSizeAdjust()"><!-- --></A><H3>
getFontSizeAdjust</H3>
<PRE>
public java.lang.String <B>getFontSizeAdjust</B>()</PRE>
<DL>
<DD>See the font-size-adjust property definition in CSS2.</DL>
<HR>
<A NAME="setFontSizeAdjust(java.lang.String)"><!-- --></A><H3>
setFontSizeAdjust</H3>
<PRE>
public void <B>setFontSizeAdjust</B>(java.lang.String fontSizeAdjust)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the font-size-adjust property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getFontStretch()"><!-- --></A><H3>
getFontStretch</H3>
<PRE>
public java.lang.String <B>getFontStretch</B>()</PRE>
<DL>
<DD>See the font-stretch property definition in CSS2.</DL>
<HR>
<A NAME="setFontStretch(java.lang.String)"><!-- --></A><H3>
setFontStretch</H3>
<PRE>
public void <B>setFontStretch</B>(java.lang.String fontStretch)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the font-stretch property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getFontStyle()"><!-- --></A><H3>
getFontStyle</H3>
<PRE>
public java.lang.String <B>getFontStyle</B>()</PRE>
<DL>
<DD>See the font-style property definition in CSS2.</DL>
<HR>
<A NAME="setFontStyle(java.lang.String)"><!-- --></A><H3>
setFontStyle</H3>
<PRE>
public void <B>setFontStyle</B>(java.lang.String fontStyle)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the font-style property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getFontVariant()"><!-- --></A><H3>
getFontVariant</H3>
<PRE>
public java.lang.String <B>getFontVariant</B>()</PRE>
<DL>
<DD>See the font-variant property definition in CSS2.</DL>
<HR>
<A NAME="setFontVariant(java.lang.String)"><!-- --></A><H3>
setFontVariant</H3>
<PRE>
public void <B>setFontVariant</B>(java.lang.String fontVariant)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the font-variant property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getFontWeight()"><!-- --></A><H3>
getFontWeight</H3>
<PRE>
public java.lang.String <B>getFontWeight</B>()</PRE>
<DL>
<DD>See the font-weight property definition in CSS2.</DL>
<HR>
<A NAME="setFontWeight(java.lang.String)"><!-- --></A><H3>
setFontWeight</H3>
<PRE>
public void <B>setFontWeight</B>(java.lang.String fontWeight)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the font-weight property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getHeight()"><!-- --></A><H3>
getHeight</H3>
<PRE>
public java.lang.String <B>getHeight</B>()</PRE>
<DL>
<DD>See the height property definition in CSS2.</DL>
<HR>
<A NAME="setHeight(java.lang.String)"><!-- --></A><H3>
setHeight</H3>
<PRE>
public void <B>setHeight</B>(java.lang.String height)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the height property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getLeft()"><!-- --></A><H3>
getLeft</H3>
<PRE>
public java.lang.String <B>getLeft</B>()</PRE>
<DL>
<DD>See the left property definition in CSS2.</DL>
<HR>
<A NAME="setLeft(java.lang.String)"><!-- --></A><H3>
setLeft</H3>
<PRE>
public void <B>setLeft</B>(java.lang.String left)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the left property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getLetterSpacing()"><!-- --></A><H3>
getLetterSpacing</H3>
<PRE>
public java.lang.String <B>getLetterSpacing</B>()</PRE>
<DL>
<DD>See the letter-spacing property definition in CSS2.</DL>
<HR>
<A NAME="setLetterSpacing(java.lang.String)"><!-- --></A><H3>
setLetterSpacing</H3>
<PRE>
public void <B>setLetterSpacing</B>(java.lang.String letterSpacing)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the letter-spacing property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getLineHeight()"><!-- --></A><H3>
getLineHeight</H3>
<PRE>
public java.lang.String <B>getLineHeight</B>()</PRE>
<DL>
<DD>See the line-height property definition in CSS2.</DL>
<HR>
<A NAME="setLineHeight(java.lang.String)"><!-- --></A><H3>
setLineHeight</H3>
<PRE>
public void <B>setLineHeight</B>(java.lang.String lineHeight)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the line-height property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getListStyle()"><!-- --></A><H3>
getListStyle</H3>
<PRE>
public java.lang.String <B>getListStyle</B>()</PRE>
<DL>
<DD>See the list-style property definition in CSS2.</DL>
<HR>
<A NAME="setListStyle(java.lang.String)"><!-- --></A><H3>
setListStyle</H3>
<PRE>
public void <B>setListStyle</B>(java.lang.String listStyle)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the list-style property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getListStyleImage()"><!-- --></A><H3>
getListStyleImage</H3>
<PRE>
public java.lang.String <B>getListStyleImage</B>()</PRE>
<DL>
<DD>See the list-style-image property definition in CSS2.</DL>
<HR>
<A NAME="setListStyleImage(java.lang.String)"><!-- --></A><H3>
setListStyleImage</H3>
<PRE>
public void <B>setListStyleImage</B>(java.lang.String listStyleImage)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the list-style-image property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getListStylePosition()"><!-- --></A><H3>
getListStylePosition</H3>
<PRE>
public java.lang.String <B>getListStylePosition</B>()</PRE>
<DL>
<DD>See the list-style-position property definition in CSS2.</DL>
<HR>
<A NAME="setListStylePosition(java.lang.String)"><!-- --></A><H3>
setListStylePosition</H3>
<PRE>
public void <B>setListStylePosition</B>(java.lang.String listStylePosition)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the list-style-position property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getListStyleType()"><!-- --></A><H3>
getListStyleType</H3>
<PRE>
public java.lang.String <B>getListStyleType</B>()</PRE>
<DL>
<DD>See the list-style-type property definition in CSS2.</DL>
<HR>
<A NAME="setListStyleType(java.lang.String)"><!-- --></A><H3>
setListStyleType</H3>
<PRE>
public void <B>setListStyleType</B>(java.lang.String listStyleType)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the list-style-type property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMargin()"><!-- --></A><H3>
getMargin</H3>
<PRE>
public java.lang.String <B>getMargin</B>()</PRE>
<DL>
<DD>See the margin property definition in CSS2.</DL>
<HR>
<A NAME="setMargin(java.lang.String)"><!-- --></A><H3>
setMargin</H3>
<PRE>
public void <B>setMargin</B>(java.lang.String margin)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the margin property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMarginTop()"><!-- --></A><H3>
getMarginTop</H3>
<PRE>
public java.lang.String <B>getMarginTop</B>()</PRE>
<DL>
<DD>See the margin-top property definition in CSS2.</DL>
<HR>
<A NAME="setMarginTop(java.lang.String)"><!-- --></A><H3>
setMarginTop</H3>
<PRE>
public void <B>setMarginTop</B>(java.lang.String marginTop)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the margin-top property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMarginRight()"><!-- --></A><H3>
getMarginRight</H3>
<PRE>
public java.lang.String <B>getMarginRight</B>()</PRE>
<DL>
<DD>See the margin-right property definition in CSS2.</DL>
<HR>
<A NAME="setMarginRight(java.lang.String)"><!-- --></A><H3>
setMarginRight</H3>
<PRE>
public void <B>setMarginRight</B>(java.lang.String marginRight)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the margin-right property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMarginBottom()"><!-- --></A><H3>
getMarginBottom</H3>
<PRE>
public java.lang.String <B>getMarginBottom</B>()</PRE>
<DL>
<DD>See the margin-bottom property definition in CSS2.</DL>
<HR>
<A NAME="setMarginBottom(java.lang.String)"><!-- --></A><H3>
setMarginBottom</H3>
<PRE>
public void <B>setMarginBottom</B>(java.lang.String marginBottom)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the margin-bottom property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMarginLeft()"><!-- --></A><H3>
getMarginLeft</H3>
<PRE>
public java.lang.String <B>getMarginLeft</B>()</PRE>
<DL>
<DD>See the margin-left property definition in CSS2.</DL>
<HR>
<A NAME="setMarginLeft(java.lang.String)"><!-- --></A><H3>
setMarginLeft</H3>
<PRE>
public void <B>setMarginLeft</B>(java.lang.String marginLeft)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the margin-left property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMarkerOffset()"><!-- --></A><H3>
getMarkerOffset</H3>
<PRE>
public java.lang.String <B>getMarkerOffset</B>()</PRE>
<DL>
<DD>See the marker-offset property definition in CSS2.</DL>
<HR>
<A NAME="setMarkerOffset(java.lang.String)"><!-- --></A><H3>
setMarkerOffset</H3>
<PRE>
public void <B>setMarkerOffset</B>(java.lang.String markerOffset)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the marker-offset property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMarks()"><!-- --></A><H3>
getMarks</H3>
<PRE>
public java.lang.String <B>getMarks</B>()</PRE>
<DL>
<DD>See the marks property definition in CSS2.</DL>
<HR>
<A NAME="setMarks(java.lang.String)"><!-- --></A><H3>
setMarks</H3>
<PRE>
public void <B>setMarks</B>(java.lang.String marks)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the marks property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMaxHeight()"><!-- --></A><H3>
getMaxHeight</H3>
<PRE>
public java.lang.String <B>getMaxHeight</B>()</PRE>
<DL>
<DD>See the max-height property definition in CSS2.</DL>
<HR>
<A NAME="setMaxHeight(java.lang.String)"><!-- --></A><H3>
setMaxHeight</H3>
<PRE>
public void <B>setMaxHeight</B>(java.lang.String maxHeight)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the max-height property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMaxWidth()"><!-- --></A><H3>
getMaxWidth</H3>
<PRE>
public java.lang.String <B>getMaxWidth</B>()</PRE>
<DL>
<DD>See the max-width property definition in CSS2.</DL>
<HR>
<A NAME="setMaxWidth(java.lang.String)"><!-- --></A><H3>
setMaxWidth</H3>
<PRE>
public void <B>setMaxWidth</B>(java.lang.String maxWidth)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the max-width property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMinHeight()"><!-- --></A><H3>
getMinHeight</H3>
<PRE>
public java.lang.String <B>getMinHeight</B>()</PRE>
<DL>
<DD>See the min-height property definition in CSS2.</DL>
<HR>
<A NAME="setMinHeight(java.lang.String)"><!-- --></A><H3>
setMinHeight</H3>
<PRE>
public void <B>setMinHeight</B>(java.lang.String minHeight)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the min-height property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getMinWidth()"><!-- --></A><H3>
getMinWidth</H3>
<PRE>
public java.lang.String <B>getMinWidth</B>()</PRE>
<DL>
<DD>See the min-width property definition in CSS2.</DL>
<HR>
<A NAME="setMinWidth(java.lang.String)"><!-- --></A><H3>
setMinWidth</H3>
<PRE>
public void <B>setMinWidth</B>(java.lang.String minWidth)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the min-width property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getOrphans()"><!-- --></A><H3>
getOrphans</H3>
<PRE>
public java.lang.String <B>getOrphans</B>()</PRE>
<DL>
<DD>See the orphans property definition in CSS2.</DL>
<HR>
<A NAME="setOrphans(java.lang.String)"><!-- --></A><H3>
setOrphans</H3>
<PRE>
public void <B>setOrphans</B>(java.lang.String orphans)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the orphans property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getOutline()"><!-- --></A><H3>
getOutline</H3>
<PRE>
public java.lang.String <B>getOutline</B>()</PRE>
<DL>
<DD>See the outline property definition in CSS2.</DL>
<HR>
<A NAME="setOutline(java.lang.String)"><!-- --></A><H3>
setOutline</H3>
<PRE>
public void <B>setOutline</B>(java.lang.String outline)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the outline property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getOutlineColor()"><!-- --></A><H3>
getOutlineColor</H3>
<PRE>
public java.lang.String <B>getOutlineColor</B>()</PRE>
<DL>
<DD>See the outline-color property definition in CSS2.</DL>
<HR>
<A NAME="setOutlineColor(java.lang.String)"><!-- --></A><H3>
setOutlineColor</H3>
<PRE>
public void <B>setOutlineColor</B>(java.lang.String outlineColor)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the outline-color property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getOutlineStyle()"><!-- --></A><H3>
getOutlineStyle</H3>
<PRE>
public java.lang.String <B>getOutlineStyle</B>()</PRE>
<DL>
<DD>See the outline-style property definition in CSS2.</DL>
<HR>
<A NAME="setOutlineStyle(java.lang.String)"><!-- --></A><H3>
setOutlineStyle</H3>
<PRE>
public void <B>setOutlineStyle</B>(java.lang.String outlineStyle)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the outline-style property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getOutlineWidth()"><!-- --></A><H3>
getOutlineWidth</H3>
<PRE>
public java.lang.String <B>getOutlineWidth</B>()</PRE>
<DL>
<DD>See the outline-width property definition in CSS2.</DL>
<HR>
<A NAME="setOutlineWidth(java.lang.String)"><!-- --></A><H3>
setOutlineWidth</H3>
<PRE>
public void <B>setOutlineWidth</B>(java.lang.String outlineWidth)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the outline-width property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getOverflow()"><!-- --></A><H3>
getOverflow</H3>
<PRE>
public java.lang.String <B>getOverflow</B>()</PRE>
<DL>
<DD>See the overflow property definition in CSS2.</DL>
<HR>
<A NAME="setOverflow(java.lang.String)"><!-- --></A><H3>
setOverflow</H3>
<PRE>
public void <B>setOverflow</B>(java.lang.String overflow)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the overflow property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPadding()"><!-- --></A><H3>
getPadding</H3>
<PRE>
public java.lang.String <B>getPadding</B>()</PRE>
<DL>
<DD>See the padding property definition in CSS2.</DL>
<HR>
<A NAME="setPadding(java.lang.String)"><!-- --></A><H3>
setPadding</H3>
<PRE>
public void <B>setPadding</B>(java.lang.String padding)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the padding property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPaddingTop()"><!-- --></A><H3>
getPaddingTop</H3>
<PRE>
public java.lang.String <B>getPaddingTop</B>()</PRE>
<DL>
<DD>See the padding-top property definition in CSS2.</DL>
<HR>
<A NAME="setPaddingTop(java.lang.String)"><!-- --></A><H3>
setPaddingTop</H3>
<PRE>
public void <B>setPaddingTop</B>(java.lang.String paddingTop)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the padding-top property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPaddingRight()"><!-- --></A><H3>
getPaddingRight</H3>
<PRE>
public java.lang.String <B>getPaddingRight</B>()</PRE>
<DL>
<DD>See the padding-right property definition in CSS2.</DL>
<HR>
<A NAME="setPaddingRight(java.lang.String)"><!-- --></A><H3>
setPaddingRight</H3>
<PRE>
public void <B>setPaddingRight</B>(java.lang.String paddingRight)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the padding-right property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPaddingBottom()"><!-- --></A><H3>
getPaddingBottom</H3>
<PRE>
public java.lang.String <B>getPaddingBottom</B>()</PRE>
<DL>
<DD>See the padding-bottom property definition in CSS2.</DL>
<HR>
<A NAME="setPaddingBottom(java.lang.String)"><!-- --></A><H3>
setPaddingBottom</H3>
<PRE>
public void <B>setPaddingBottom</B>(java.lang.String paddingBottom)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the padding-bottom property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPaddingLeft()"><!-- --></A><H3>
getPaddingLeft</H3>
<PRE>
public java.lang.String <B>getPaddingLeft</B>()</PRE>
<DL>
<DD>See the padding-left property definition in CSS2.</DL>
<HR>
<A NAME="setPaddingLeft(java.lang.String)"><!-- --></A><H3>
setPaddingLeft</H3>
<PRE>
public void <B>setPaddingLeft</B>(java.lang.String paddingLeft)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the padding-left property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPage()"><!-- --></A><H3>
getPage</H3>
<PRE>
public java.lang.String <B>getPage</B>()</PRE>
<DL>
<DD>See the page property definition in CSS2.</DL>
<HR>
<A NAME="setPage(java.lang.String)"><!-- --></A><H3>
setPage</H3>
<PRE>
public void <B>setPage</B>(java.lang.String page)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the page property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPageBreakAfter()"><!-- --></A><H3>
getPageBreakAfter</H3>
<PRE>
public java.lang.String <B>getPageBreakAfter</B>()</PRE>
<DL>
<DD>See the page-break-after property definition in CSS2.</DL>
<HR>
<A NAME="setPageBreakAfter(java.lang.String)"><!-- --></A><H3>
setPageBreakAfter</H3>
<PRE>
public void <B>setPageBreakAfter</B>(java.lang.String pageBreakAfter)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the page-break-after property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPageBreakBefore()"><!-- --></A><H3>
getPageBreakBefore</H3>
<PRE>
public java.lang.String <B>getPageBreakBefore</B>()</PRE>
<DL>
<DD>See the page-break-before property definition in CSS2.</DL>
<HR>
<A NAME="setPageBreakBefore(java.lang.String)"><!-- --></A><H3>
setPageBreakBefore</H3>
<PRE>
public void <B>setPageBreakBefore</B>(java.lang.String pageBreakBefore)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the page-break-before property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPageBreakInside()"><!-- --></A><H3>
getPageBreakInside</H3>
<PRE>
public java.lang.String <B>getPageBreakInside</B>()</PRE>
<DL>
<DD>See the page-break-inside property definition in CSS2.</DL>
<HR>
<A NAME="setPageBreakInside(java.lang.String)"><!-- --></A><H3>
setPageBreakInside</H3>
<PRE>
public void <B>setPageBreakInside</B>(java.lang.String pageBreakInside)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the page-break-inside property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPause()"><!-- --></A><H3>
getPause</H3>
<PRE>
public java.lang.String <B>getPause</B>()</PRE>
<DL>
<DD>See the pause property definition in CSS2.</DL>
<HR>
<A NAME="setPause(java.lang.String)"><!-- --></A><H3>
setPause</H3>
<PRE>
public void <B>setPause</B>(java.lang.String pause)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the pause property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPauseAfter()"><!-- --></A><H3>
getPauseAfter</H3>
<PRE>
public java.lang.String <B>getPauseAfter</B>()</PRE>
<DL>
<DD>See the pause-after property definition in CSS2.</DL>
<HR>
<A NAME="setPauseAfter(java.lang.String)"><!-- --></A><H3>
setPauseAfter</H3>
<PRE>
public void <B>setPauseAfter</B>(java.lang.String pauseAfter)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the pause-after property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPauseBefore()"><!-- --></A><H3>
getPauseBefore</H3>
<PRE>
public java.lang.String <B>getPauseBefore</B>()</PRE>
<DL>
<DD>See the pause-before property definition in CSS2.</DL>
<HR>
<A NAME="setPauseBefore(java.lang.String)"><!-- --></A><H3>
setPauseBefore</H3>
<PRE>
public void <B>setPauseBefore</B>(java.lang.String pauseBefore)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the pause-before property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPitch()"><!-- --></A><H3>
getPitch</H3>
<PRE>
public java.lang.String <B>getPitch</B>()</PRE>
<DL>
<DD>See the pitch property definition in CSS2.</DL>
<HR>
<A NAME="setPitch(java.lang.String)"><!-- --></A><H3>
setPitch</H3>
<PRE>
public void <B>setPitch</B>(java.lang.String pitch)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the pitch property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPitchRange()"><!-- --></A><H3>
getPitchRange</H3>
<PRE>
public java.lang.String <B>getPitchRange</B>()</PRE>
<DL>
<DD>See the pitch-range property definition in CSS2.</DL>
<HR>
<A NAME="setPitchRange(java.lang.String)"><!-- --></A><H3>
setPitchRange</H3>
<PRE>
public void <B>setPitchRange</B>(java.lang.String pitchRange)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the pitch-range property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPlayDuring()"><!-- --></A><H3>
getPlayDuring</H3>
<PRE>
public java.lang.String <B>getPlayDuring</B>()</PRE>
<DL>
<DD>See the play-during property definition in CSS2.</DL>
<HR>
<A NAME="setPlayDuring(java.lang.String)"><!-- --></A><H3>
setPlayDuring</H3>
<PRE>
public void <B>setPlayDuring</B>(java.lang.String playDuring)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the play-during property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getPosition()"><!-- --></A><H3>
getPosition</H3>
<PRE>
public java.lang.String <B>getPosition</B>()</PRE>
<DL>
<DD>See the position property definition in CSS2.</DL>
<HR>
<A NAME="setPosition(java.lang.String)"><!-- --></A><H3>
setPosition</H3>
<PRE>
public void <B>setPosition</B>(java.lang.String position)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the position property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getQuotes()"><!-- --></A><H3>
getQuotes</H3>
<PRE>
public java.lang.String <B>getQuotes</B>()</PRE>
<DL>
<DD>See the quotes property definition in CSS2.</DL>
<HR>
<A NAME="setQuotes(java.lang.String)"><!-- --></A><H3>
setQuotes</H3>
<PRE>
public void <B>setQuotes</B>(java.lang.String quotes)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the quotes property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getRichness()"><!-- --></A><H3>
getRichness</H3>
<PRE>
public java.lang.String <B>getRichness</B>()</PRE>
<DL>
<DD>See the richness property definition in CSS2.</DL>
<HR>
<A NAME="setRichness(java.lang.String)"><!-- --></A><H3>
setRichness</H3>
<PRE>
public void <B>setRichness</B>(java.lang.String richness)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the richness property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getRight()"><!-- --></A><H3>
getRight</H3>
<PRE>
public java.lang.String <B>getRight</B>()</PRE>
<DL>
<DD>See the right property definition in CSS2.</DL>
<HR>
<A NAME="setRight(java.lang.String)"><!-- --></A><H3>
setRight</H3>
<PRE>
public void <B>setRight</B>(java.lang.String right)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the right property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getSize()"><!-- --></A><H3>
getSize</H3>
<PRE>
public java.lang.String <B>getSize</B>()</PRE>
<DL>
<DD>See the size property definition in CSS2.</DL>
<HR>
<A NAME="setSize(java.lang.String)"><!-- --></A><H3>
setSize</H3>
<PRE>
public void <B>setSize</B>(java.lang.String size)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the size property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getSpeak()"><!-- --></A><H3>
getSpeak</H3>
<PRE>
public java.lang.String <B>getSpeak</B>()</PRE>
<DL>
<DD>See the speak property definition in CSS2.</DL>
<HR>
<A NAME="setSpeak(java.lang.String)"><!-- --></A><H3>
setSpeak</H3>
<PRE>
public void <B>setSpeak</B>(java.lang.String speak)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the speak property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getSpeakHeader()"><!-- --></A><H3>
getSpeakHeader</H3>
<PRE>
public java.lang.String <B>getSpeakHeader</B>()</PRE>
<DL>
<DD>See the speak-header property definition in CSS2.</DL>
<HR>
<A NAME="setSpeakHeader(java.lang.String)"><!-- --></A><H3>
setSpeakHeader</H3>
<PRE>
public void <B>setSpeakHeader</B>(java.lang.String speakHeader)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the speak-header property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getSpeakNumeral()"><!-- --></A><H3>
getSpeakNumeral</H3>
<PRE>
public java.lang.String <B>getSpeakNumeral</B>()</PRE>
<DL>
<DD>See the speak-numeral property definition in CSS2.</DL>
<HR>
<A NAME="setSpeakNumeral(java.lang.String)"><!-- --></A><H3>
setSpeakNumeral</H3>
<PRE>
public void <B>setSpeakNumeral</B>(java.lang.String speakNumeral)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the speak-numeral property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getSpeakPunctuation()"><!-- --></A><H3>
getSpeakPunctuation</H3>
<PRE>
public java.lang.String <B>getSpeakPunctuation</B>()</PRE>
<DL>
<DD>See the speak-punctuation property definition in CSS2.</DL>
<HR>
<A NAME="setSpeakPunctuation(java.lang.String)"><!-- --></A><H3>
setSpeakPunctuation</H3>
<PRE>
public void <B>setSpeakPunctuation</B>(java.lang.String speakPunctuation)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the speak-punctuation property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getSpeechRate()"><!-- --></A><H3>
getSpeechRate</H3>
<PRE>
public java.lang.String <B>getSpeechRate</B>()</PRE>
<DL>
<DD>See the speech-rate property definition in CSS2.</DL>
<HR>
<A NAME="setSpeechRate(java.lang.String)"><!-- --></A><H3>
setSpeechRate</H3>
<PRE>
public void <B>setSpeechRate</B>(java.lang.String speechRate)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the speech-rate property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getStress()"><!-- --></A><H3>
getStress</H3>
<PRE>
public java.lang.String <B>getStress</B>()</PRE>
<DL>
<DD>See the stress property definition in CSS2.</DL>
<HR>
<A NAME="setStress(java.lang.String)"><!-- --></A><H3>
setStress</H3>
<PRE>
public void <B>setStress</B>(java.lang.String stress)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the stress property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getTableLayout()"><!-- --></A><H3>
getTableLayout</H3>
<PRE>
public java.lang.String <B>getTableLayout</B>()</PRE>
<DL>
<DD>See the table-layout property definition in CSS2.</DL>
<HR>
<A NAME="setTableLayout(java.lang.String)"><!-- --></A><H3>
setTableLayout</H3>
<PRE>
public void <B>setTableLayout</B>(java.lang.String tableLayout)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the table-layout property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getTextAlign()"><!-- --></A><H3>
getTextAlign</H3>
<PRE>
public java.lang.String <B>getTextAlign</B>()</PRE>
<DL>
<DD>See the text-align property definition in CSS2.</DL>
<HR>
<A NAME="setTextAlign(java.lang.String)"><!-- --></A><H3>
setTextAlign</H3>
<PRE>
public void <B>setTextAlign</B>(java.lang.String textAlign)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the text-align property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getTextDecoration()"><!-- --></A><H3>
getTextDecoration</H3>
<PRE>
public java.lang.String <B>getTextDecoration</B>()</PRE>
<DL>
<DD>See the text-decoration property definition in CSS2.</DL>
<HR>
<A NAME="setTextDecoration(java.lang.String)"><!-- --></A><H3>
setTextDecoration</H3>
<PRE>
public void <B>setTextDecoration</B>(java.lang.String textDecoration)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the text-decoration property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getTextIndent()"><!-- --></A><H3>
getTextIndent</H3>
<PRE>
public java.lang.String <B>getTextIndent</B>()</PRE>
<DL>
<DD>See the text-indent property definition in CSS2.</DL>
<HR>
<A NAME="setTextIndent(java.lang.String)"><!-- --></A><H3>
setTextIndent</H3>
<PRE>
public void <B>setTextIndent</B>(java.lang.String textIndent)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the text-indent property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getTextShadow()"><!-- --></A><H3>
getTextShadow</H3>
<PRE>
public java.lang.String <B>getTextShadow</B>()</PRE>
<DL>
<DD>See the text-shadow property definition in CSS2.</DL>
<HR>
<A NAME="setTextShadow(java.lang.String)"><!-- --></A><H3>
setTextShadow</H3>
<PRE>
public void <B>setTextShadow</B>(java.lang.String textShadow)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the text-shadow property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getTextTransform()"><!-- --></A><H3>
getTextTransform</H3>
<PRE>
public java.lang.String <B>getTextTransform</B>()</PRE>
<DL>
<DD>See the text-transform property definition in CSS2.</DL>
<HR>
<A NAME="setTextTransform(java.lang.String)"><!-- --></A><H3>
setTextTransform</H3>
<PRE>
public void <B>setTextTransform</B>(java.lang.String textTransform)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the text-transform property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getTop()"><!-- --></A><H3>
getTop</H3>
<PRE>
public java.lang.String <B>getTop</B>()</PRE>
<DL>
<DD>See the top property definition in CSS2.</DL>
<HR>
<A NAME="setTop(java.lang.String)"><!-- --></A><H3>
setTop</H3>
<PRE>
public void <B>setTop</B>(java.lang.String top)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the top property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getUnicodeBidi()"><!-- --></A><H3>
getUnicodeBidi</H3>
<PRE>
public java.lang.String <B>getUnicodeBidi</B>()</PRE>
<DL>
<DD>See the unicode-bidi property definition in CSS2.</DL>
<HR>
<A NAME="setUnicodeBidi(java.lang.String)"><!-- --></A><H3>
setUnicodeBidi</H3>
<PRE>
public void <B>setUnicodeBidi</B>(java.lang.String unicodeBidi)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the unicode-bidi property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getVerticalAlign()"><!-- --></A><H3>
getVerticalAlign</H3>
<PRE>
public java.lang.String <B>getVerticalAlign</B>()</PRE>
<DL>
<DD>See the vertical-align property definition in CSS2.</DL>
<HR>
<A NAME="setVerticalAlign(java.lang.String)"><!-- --></A><H3>
setVerticalAlign</H3>
<PRE>
public void <B>setVerticalAlign</B>(java.lang.String verticalAlign)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the vertical-align property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getVisibility()"><!-- --></A><H3>
getVisibility</H3>
<PRE>
public java.lang.String <B>getVisibility</B>()</PRE>
<DL>
<DD>See the visibility property definition in CSS2.</DL>
<HR>
<A NAME="setVisibility(java.lang.String)"><!-- --></A><H3>
setVisibility</H3>
<PRE>
public void <B>setVisibility</B>(java.lang.String visibility)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the visibility property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getVoiceFamily()"><!-- --></A><H3>
getVoiceFamily</H3>
<PRE>
public java.lang.String <B>getVoiceFamily</B>()</PRE>
<DL>
<DD>See the voice-family property definition in CSS2.</DL>
<HR>
<A NAME="setVoiceFamily(java.lang.String)"><!-- --></A><H3>
setVoiceFamily</H3>
<PRE>
public void <B>setVoiceFamily</B>(java.lang.String voiceFamily)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the voice-family property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getVolume()"><!-- --></A><H3>
getVolume</H3>
<PRE>
public java.lang.String <B>getVolume</B>()</PRE>
<DL>
<DD>See the volume property definition in CSS2.</DL>
<HR>
<A NAME="setVolume(java.lang.String)"><!-- --></A><H3>
setVolume</H3>
<PRE>
public void <B>setVolume</B>(java.lang.String volume)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the volume property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getWhiteSpace()"><!-- --></A><H3>
getWhiteSpace</H3>
<PRE>
public java.lang.String <B>getWhiteSpace</B>()</PRE>
<DL>
<DD>See the white-space property definition in CSS2.</DL>
<HR>
<A NAME="setWhiteSpace(java.lang.String)"><!-- --></A><H3>
setWhiteSpace</H3>
<PRE>
public void <B>setWhiteSpace</B>(java.lang.String whiteSpace)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the white-space property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getWidows()"><!-- --></A><H3>
getWidows</H3>
<PRE>
public java.lang.String <B>getWidows</B>()</PRE>
<DL>
<DD>See the widows property definition in CSS2.</DL>
<HR>
<A NAME="setWidows(java.lang.String)"><!-- --></A><H3>
setWidows</H3>
<PRE>
public void <B>setWidows</B>(java.lang.String widows)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the widows property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getWidth()"><!-- --></A><H3>
getWidth</H3>
<PRE>
public java.lang.String <B>getWidth</B>()</PRE>
<DL>
<DD>See the width property definition in CSS2.</DL>
<HR>
<A NAME="setWidth(java.lang.String)"><!-- --></A><H3>
setWidth</H3>
<PRE>
public void <B>setWidth</B>(java.lang.String width)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the width property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getWordSpacing()"><!-- --></A><H3>
getWordSpacing</H3>
<PRE>
public java.lang.String <B>getWordSpacing</B>()</PRE>
<DL>
<DD>See the word-spacing property definition in CSS2.</DL>
<HR>
<A NAME="setWordSpacing(java.lang.String)"><!-- --></A><H3>
setWordSpacing</H3>
<PRE>
public void <B>setWordSpacing</B>(java.lang.String wordSpacing)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the word-spacing property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<HR>
<A NAME="getZIndex()"><!-- --></A><H3>
getZIndex</H3>
<PRE>
public java.lang.String <B>getZIndex</B>()</PRE>
<DL>
<DD>See the z-index property definition in CSS2.</DL>
<HR>
<A NAME="setZIndex(java.lang.String)"><!-- --></A><H3>
setZIndex</H3>
<PRE>
public void <B>setZIndex</B>(java.lang.String zIndex)
throws <A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A></PRE>
<DL>
<DD>See the z-index property definition in CSS2.<DD><DL>
<DT><B>Throws:</B><DD><A HREF="../../../../org/w3c/dom/DOMException.html">DOMException</A> - SYNTAX_ERR: Raised if the new value has a syntax error and is
unparsable.
<br>NO_MODIFICATION_ALLOWED_ERR: Raised if this property is readonly.</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/CSS2Properties.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../org/w3c/dom/css/Counter.html"><B>PREV CLASS</B></A>
<A HREF="../../../../org/w3c/dom/css/CSSCharsetRule.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="CSS2Properties.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | FIELD | CONSTR | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | CONSTR | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
Copyright � 2006 Apache XML Project. All Rights Reserved.
</BODY>
</HTML>