Common DOM API

org.w3c.dom.css
インタフェース CSS2Properties


public interface CSS2Properties

CSS2Properties インタフェースは、CSSStyleDeclaration 内のプロパティを取得および設定するための便利な機構を表します。このインタフェースの 属性は、CSS2 で規定されているすべてのプロパティに対応します。このインタフェースの 属性を取得することは、CSSStyleDeclaration インタフェースの getPropertyValue メソッドを呼び出すことと同じです。このインタフェースの 属性を設定することは、CSSStyleDeclaration インタフェースの setProperty メソッドを呼び出すことと同じです。

CSS2Properties インタフェースの実装には、仕様に準拠して実装 された CSS モジュールは必要ありません。このインタフェースを実装していない実装の 場合は、CSSStyleDeclaration インタフェースのインスタンスから CSS2Properties インタフェースにキャストするための、その言語に固有の メソッドを利用できることが期待されます。

また、短縮形のプロパティに特有の構文を理解して、そのセマンティクスを適用 できることが期待されます。たとえば、margin プロパティを設定した 場合、実際には、基盤となる実装によって marginTopmarginRightmarginBottom、および marginLeft の各プロパティが設定される必要があります。

CSS の「短縮形」のプロパティを取り扱うときは、その構成要素である正式表記 のプロパティに分解する必要があります。また、その値が照会されたときは、 ルールセット内での宣言に正確に一致する最短の形式で値を返す必要があります。 ただし、短縮形の宣言を追加する際、ルールセット内ですでに宣言されている ルールを何らかの形で変更する (ルールセット内でまだ宣言されていない正式表記の ルールを追加する) 必要がある場合には、その短縮形のプロパティに対して空の 文字列を返してください。

たとえば、font プロパティが照会された場合、"14pt Arial, sans-serif" で十分なときは、"normal normal normal 14pt/normal Arial, sans-serif" を返すこと はできません。「normal」という値は初期値であり、正式表記のプロパティを使用した 場合に暗黙に指定されるからです。

特定の文字列を構成する正式表記のプロパティの値がすべて初期値である 場合は、すべての初期値が含まれる値を返す必要があります。たとえば、 border-width の値としては "" ではなく、"medium" を返す必要が あります。

欠落している値を反対側の辺から取得する一部の短縮形のプロパティ (marginpaddingborder-[width|style|color] など) については、辺の数を最小限する必要があります。つまり、 "0px 10px 0px 10px" ではなく、"0px 10px" を返します。

"menu" という値を持つ font プロパティの場合のように、 短縮形のプロパティの値を、その構成要素である正式表記のプロパティに分解 できない場合には、構成要素である正式表記のプロパティの値が照会されたとき に、空の文字列を返す必要があります。

「Document Object Model (DOM) Level 2 Style Specification」も参照してください。

導入されたバージョン:
DOM Level 2

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

メソッドの詳細

getAzimuth

public String getAzimuth()
CSS2 の azimuth プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setAzimuth

public void setAzimuth(String azimuth)
                throws DOMException
DOMException

getBackground

public String getBackground()
CSS2 の background プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBackground

public void setBackground(String background)
                   throws DOMException
DOMException

getBackgroundAttachment

public String getBackgroundAttachment()
CSS2 の background-attachment プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBackgroundAttachment

public void setBackgroundAttachment(String backgroundAttachment)
                             throws DOMException
DOMException

getBackgroundColor

public String getBackgroundColor()
CSS2 の background-color プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBackgroundColor

public void setBackgroundColor(String backgroundColor)
                        throws DOMException
DOMException

getBackgroundImage

public String getBackgroundImage()
CSS2 の background-image プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBackgroundImage

public void setBackgroundImage(String backgroundImage)
                        throws DOMException
DOMException

getBackgroundPosition

public String getBackgroundPosition()
CSS2 の background-position プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBackgroundPosition

public void setBackgroundPosition(String backgroundPosition)
                           throws DOMException
DOMException

getBackgroundRepeat

public String getBackgroundRepeat()
CSS2 の background-repeat プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBackgroundRepeat

public void setBackgroundRepeat(String backgroundRepeat)
                         throws DOMException
DOMException

getBorder

public String getBorder()
CSS2 の border プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorder

public void setBorder(String border)
               throws DOMException
DOMException

getBorderCollapse

public String getBorderCollapse()
CSS2 の border-collapse プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderCollapse

public void setBorderCollapse(String borderCollapse)
                       throws DOMException
DOMException

getBorderColor

public String getBorderColor()
CSS2 の border-color プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderColor

public void setBorderColor(String borderColor)
                    throws DOMException
DOMException

getBorderSpacing

public String getBorderSpacing()
CSS2 の border-spacing プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderSpacing

public void setBorderSpacing(String borderSpacing)
                      throws DOMException
DOMException

getBorderStyle

public String getBorderStyle()
CSS2 の border-style プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderStyle

public void setBorderStyle(String borderStyle)
                    throws DOMException
DOMException

getBorderTop

public String getBorderTop()
CSS2 の border-top プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderTop

public void setBorderTop(String borderTop)
                  throws DOMException
DOMException

getBorderRight

public String getBorderRight()
CSS2 の border-right プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderRight

public void setBorderRight(String borderRight)
                    throws DOMException
DOMException

getBorderBottom

public String getBorderBottom()
CSS2 の border-bottom プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderBottom

public void setBorderBottom(String borderBottom)
                     throws DOMException
DOMException

getBorderLeft

public String getBorderLeft()
CSS2 の border-left プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderLeft

public void setBorderLeft(String borderLeft)
                   throws DOMException
DOMException

getBorderTopColor

public String getBorderTopColor()
CSS2 の border-top-color プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderTopColor

public void setBorderTopColor(String borderTopColor)
                       throws DOMException
DOMException

getBorderRightColor

public String getBorderRightColor()
CSS2 の border-right-color プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderRightColor

public void setBorderRightColor(String borderRightColor)
                         throws DOMException
DOMException

getBorderBottomColor

public String getBorderBottomColor()
CSS2 の border-bottom-color プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderBottomColor

public void setBorderBottomColor(String borderBottomColor)
                          throws DOMException
DOMException

getBorderLeftColor

public String getBorderLeftColor()
CSS2 の border-left-color プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderLeftColor

public void setBorderLeftColor(String borderLeftColor)
                        throws DOMException
DOMException

getBorderTopStyle

public String getBorderTopStyle()
CSS2 の border-top-style プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderTopStyle

public void setBorderTopStyle(String borderTopStyle)
                       throws DOMException
DOMException

getBorderRightStyle

public String getBorderRightStyle()
CSS2 の border-right-style プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderRightStyle

public void setBorderRightStyle(String borderRightStyle)
                         throws DOMException
DOMException

getBorderBottomStyle

public String getBorderBottomStyle()
CSS2 の border-bottom-style プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderBottomStyle

public void setBorderBottomStyle(String borderBottomStyle)
                          throws DOMException
DOMException

getBorderLeftStyle

public String getBorderLeftStyle()
CSS2 の border-left-style プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderLeftStyle

public void setBorderLeftStyle(String borderLeftStyle)
                        throws DOMException
DOMException

getBorderTopWidth

public String getBorderTopWidth()
CSS2 の border-top-width プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderTopWidth

public void setBorderTopWidth(String borderTopWidth)
                       throws DOMException
DOMException

getBorderRightWidth

public String getBorderRightWidth()
CSS2 の border-right-width プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderRightWidth

public void setBorderRightWidth(String borderRightWidth)
                         throws DOMException
DOMException

getBorderBottomWidth

public String getBorderBottomWidth()
CSS2 の border-bottom-width プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderBottomWidth

public void setBorderBottomWidth(String borderBottomWidth)
                          throws DOMException
DOMException

getBorderLeftWidth

public String getBorderLeftWidth()
CSS2 の border-left-width プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderLeftWidth

public void setBorderLeftWidth(String borderLeftWidth)
                        throws DOMException
DOMException

getBorderWidth

public String getBorderWidth()
CSS2 の border-width プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBorderWidth

public void setBorderWidth(String borderWidth)
                    throws DOMException
DOMException

getBottom

public String getBottom()
CSS2 の bottom プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setBottom

public void setBottom(String bottom)
               throws DOMException
DOMException

getCaptionSide

public String getCaptionSide()
CSS2 の caption-side プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setCaptionSide

public void setCaptionSide(String captionSide)
                    throws DOMException
DOMException

getClear

public String getClear()
CSS2 の clear プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setClear

public void setClear(String clear)
              throws DOMException
DOMException

getClip

public String getClip()
CSS2 の clip プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setClip

public void setClip(String clip)
             throws DOMException
DOMException

getColor

public String getColor()
CSS2 の color プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setColor

public void setColor(String color)
              throws DOMException
DOMException

getContent

public String getContent()
CSS2 の content プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setContent

public void setContent(String content)
                throws DOMException
DOMException

getCounterIncrement

public String getCounterIncrement()
CSS2 の counter-increment プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setCounterIncrement

public void setCounterIncrement(String counterIncrement)
                         throws DOMException
DOMException

getCounterReset

public String getCounterReset()
CSS2 の counter-reset プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setCounterReset

public void setCounterReset(String counterReset)
                     throws DOMException
DOMException

getCue

public String getCue()
CSS2 の cue プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setCue

public void setCue(String cue)
            throws DOMException
DOMException

getCueAfter

public String getCueAfter()
CSS2 の cue-after プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setCueAfter

public void setCueAfter(String cueAfter)
                 throws DOMException
DOMException

getCueBefore

public String getCueBefore()
CSS2 の cue-before プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setCueBefore

public void setCueBefore(String cueBefore)
                  throws DOMException
DOMException

getCursor

public String getCursor()
CSS2 の cursor プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setCursor

public void setCursor(String cursor)
               throws DOMException
DOMException

getDirection

public String getDirection()
CSS2 の direction プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setDirection

public void setDirection(String direction)
                  throws DOMException
DOMException

getDisplay

public String getDisplay()
CSS2 の display プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setDisplay

public void setDisplay(String display)
                throws DOMException
DOMException

getElevation

public String getElevation()
CSS2 の elevation プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setElevation

public void setElevation(String elevation)
                  throws DOMException
DOMException

getEmptyCells

public String getEmptyCells()
CSS2 の empty-cells プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setEmptyCells

public void setEmptyCells(String emptyCells)
                   throws DOMException
DOMException

getCssFloat

public String getCssFloat()
CSS2 の float プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setCssFloat

public void setCssFloat(String cssFloat)
                 throws DOMException
DOMException

getFont

public String getFont()
CSS2 の font プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setFont

public void setFont(String font)
             throws DOMException
DOMException

getFontFamily

public String getFontFamily()
CSS2 の font-family プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setFontFamily

public void setFontFamily(String fontFamily)
                   throws DOMException
DOMException

getFontSize

public String getFontSize()
CSS2 の font-size プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setFontSize

public void setFontSize(String fontSize)
                 throws DOMException
DOMException

getFontSizeAdjust

public String getFontSizeAdjust()
CSS2 の font-size-adjust プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setFontSizeAdjust

public void setFontSizeAdjust(String fontSizeAdjust)
                       throws DOMException
DOMException

getFontStretch

public String getFontStretch()
CSS2 の font-stretch プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setFontStretch

public void setFontStretch(String fontStretch)
                    throws DOMException
DOMException

getFontStyle

public String getFontStyle()
CSS2 の font-style プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setFontStyle

public void setFontStyle(String fontStyle)
                  throws DOMException
DOMException

getFontVariant

public String getFontVariant()
CSS2 の font-variant プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setFontVariant

public void setFontVariant(String fontVariant)
                    throws DOMException
DOMException

getFontWeight

public String getFontWeight()
CSS2 の font-weight プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setFontWeight

public void setFontWeight(String fontWeight)
                   throws DOMException
DOMException

getHeight

public String getHeight()
CSS2 の height プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setHeight

public void setHeight(String height)
               throws DOMException
DOMException

getLeft

public String getLeft()
CSS2 の left プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setLeft

public void setLeft(String left)
             throws DOMException
DOMException

getLetterSpacing

public String getLetterSpacing()
CSS2 の letter-spacing プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setLetterSpacing

public void setLetterSpacing(String letterSpacing)
                      throws DOMException
DOMException

getLineHeight

public String getLineHeight()
CSS2 の line-height プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setLineHeight

public void setLineHeight(String lineHeight)
                   throws DOMException
DOMException

getListStyle

public String getListStyle()
CSS2 の list-style プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setListStyle

public void setListStyle(String listStyle)
                  throws DOMException
DOMException

getListStyleImage

public String getListStyleImage()
CSS2 の list-style-image プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setListStyleImage

public void setListStyleImage(String listStyleImage)
                       throws DOMException
DOMException

getListStylePosition

public String getListStylePosition()
CSS2 の list-style-position プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setListStylePosition

public void setListStylePosition(String listStylePosition)
                          throws DOMException
DOMException

getListStyleType

public String getListStyleType()
CSS2 の list-style-type プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setListStyleType

public void setListStyleType(String listStyleType)
                      throws DOMException
DOMException

getMargin

public String getMargin()
CSS2 の margin プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMargin

public void setMargin(String margin)
               throws DOMException
DOMException

getMarginTop

public String getMarginTop()
CSS2 の margin-top プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMarginTop

public void setMarginTop(String marginTop)
                  throws DOMException
DOMException

getMarginRight

public String getMarginRight()
CSS2 の margin-right プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMarginRight

public void setMarginRight(String marginRight)
                    throws DOMException
DOMException

getMarginBottom

public String getMarginBottom()
CSS2 の margin-bottom プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMarginBottom

public void setMarginBottom(String marginBottom)
                     throws DOMException
DOMException

getMarginLeft

public String getMarginLeft()
CSS2 の margin-left プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMarginLeft

public void setMarginLeft(String marginLeft)
                   throws DOMException
DOMException

getMarkerOffset

public String getMarkerOffset()
CSS2 の marker-offset プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMarkerOffset

public void setMarkerOffset(String markerOffset)
                     throws DOMException
DOMException

getMarks

public String getMarks()
CSS2 の marks プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMarks

public void setMarks(String marks)
              throws DOMException
DOMException

getMaxHeight

public String getMaxHeight()
CSS2 の max-height プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMaxHeight

public void setMaxHeight(String maxHeight)
                  throws DOMException
DOMException

getMaxWidth

public String getMaxWidth()
CSS2 の max-width プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMaxWidth

public void setMaxWidth(String maxWidth)
                 throws DOMException
DOMException

getMinHeight

public String getMinHeight()
CSS2 の min-height プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMinHeight

public void setMinHeight(String minHeight)
                  throws DOMException
DOMException

getMinWidth

public String getMinWidth()
CSS2 の min-width プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setMinWidth

public void setMinWidth(String minWidth)
                 throws DOMException
DOMException

getOrphans

public String getOrphans()
CSS2 の orphans プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setOrphans

public void setOrphans(String orphans)
                throws DOMException
DOMException

getOutline

public String getOutline()
CSS2 の outline プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setOutline

public void setOutline(String outline)
                throws DOMException
DOMException

getOutlineColor

public String getOutlineColor()
CSS2 の outline-color プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setOutlineColor

public void setOutlineColor(String outlineColor)
                     throws DOMException
DOMException

getOutlineStyle

public String getOutlineStyle()
CSS2 の outline-style プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setOutlineStyle

public void setOutlineStyle(String outlineStyle)
                     throws DOMException
DOMException

getOutlineWidth

public String getOutlineWidth()
CSS2 の outline-width プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setOutlineWidth

public void setOutlineWidth(String outlineWidth)
                     throws DOMException
DOMException

getOverflow

public String getOverflow()
CSS2 の overflow プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setOverflow

public void setOverflow(String overflow)
                 throws DOMException
DOMException

getPadding

public String getPadding()
CSS2 の padding プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPadding

public void setPadding(String padding)
                throws DOMException
DOMException

getPaddingTop

public String getPaddingTop()
CSS2 の padding-top プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPaddingTop

public void setPaddingTop(String paddingTop)
                   throws DOMException
DOMException

getPaddingRight

public String getPaddingRight()
CSS2 の padding-right プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPaddingRight

public void setPaddingRight(String paddingRight)
                     throws DOMException
DOMException

getPaddingBottom

public String getPaddingBottom()
CSS2 の padding-bottom プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPaddingBottom

public void setPaddingBottom(String paddingBottom)
                      throws DOMException
DOMException

getPaddingLeft

public String getPaddingLeft()
CSS2 の padding-left プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPaddingLeft

public void setPaddingLeft(String paddingLeft)
                    throws DOMException
DOMException

getPage

public String getPage()
CSS2 の page プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPage

public void setPage(String page)
             throws DOMException
DOMException

getPageBreakAfter

public String getPageBreakAfter()
CSS2 の page-break-after プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPageBreakAfter

public void setPageBreakAfter(String pageBreakAfter)
                       throws DOMException
DOMException

getPageBreakBefore

public String getPageBreakBefore()
CSS2 の page-break-before プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPageBreakBefore

public void setPageBreakBefore(String pageBreakBefore)
                        throws DOMException
DOMException

getPageBreakInside

public String getPageBreakInside()
CSS2 の page-break-inside プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPageBreakInside

public void setPageBreakInside(String pageBreakInside)
                        throws DOMException
DOMException

getPause

public String getPause()
CSS2 の pause プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPause

public void setPause(String pause)
              throws DOMException
DOMException

getPauseAfter

public String getPauseAfter()
CSS2 の pause-after プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPauseAfter

public void setPauseAfter(String pauseAfter)
                   throws DOMException
DOMException

getPauseBefore

public String getPauseBefore()
CSS2 の pause-before プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPauseBefore

public void setPauseBefore(String pauseBefore)
                    throws DOMException
DOMException

getPitch

public String getPitch()
CSS2 の pitch プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPitch

public void setPitch(String pitch)
              throws DOMException
DOMException

getPitchRange

public String getPitchRange()
CSS2 の pitch-range プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPitchRange

public void setPitchRange(String pitchRange)
                   throws DOMException
DOMException

getPlayDuring

public String getPlayDuring()
CSS2 の play-during プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPlayDuring

public void setPlayDuring(String playDuring)
                   throws DOMException
DOMException

getPosition

public String getPosition()
CSS2 の position プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setPosition

public void setPosition(String position)
                 throws DOMException
DOMException

getQuotes

public String getQuotes()
CSS2 の quotes プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setQuotes

public void setQuotes(String quotes)
               throws DOMException
DOMException

getRichness

public String getRichness()
CSS2 の richness プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setRichness

public void setRichness(String richness)
                 throws DOMException
DOMException

getRight

public String getRight()
CSS2 の right プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setRight

public void setRight(String right)
              throws DOMException
DOMException

getSize

public String getSize()
CSS2 の size プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setSize

public void setSize(String size)
             throws DOMException
DOMException

getSpeak

public String getSpeak()
CSS2 の speak プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setSpeak

public void setSpeak(String speak)
              throws DOMException
DOMException

getSpeakHeader

public String getSpeakHeader()
CSS2 の speak-header プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setSpeakHeader

public void setSpeakHeader(String speakHeader)
                    throws DOMException
DOMException

getSpeakNumeral

public String getSpeakNumeral()
CSS2 の speak-numeral プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setSpeakNumeral

public void setSpeakNumeral(String speakNumeral)
                     throws DOMException
DOMException

getSpeakPunctuation

public String getSpeakPunctuation()
CSS2 の speak-punctuation プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setSpeakPunctuation

public void setSpeakPunctuation(String speakPunctuation)
                         throws DOMException
DOMException

getSpeechRate

public String getSpeechRate()
CSS2 の speech-rate プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setSpeechRate

public void setSpeechRate(String speechRate)
                   throws DOMException
DOMException

getStress

public String getStress()
CSS2 の stress プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setStress

public void setStress(String stress)
               throws DOMException
DOMException

getTableLayout

public String getTableLayout()
CSS2 の table-layout プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setTableLayout

public void setTableLayout(String tableLayout)
                    throws DOMException
DOMException

getTextAlign

public String getTextAlign()
CSS2 の text-align プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setTextAlign

public void setTextAlign(String textAlign)
                  throws DOMException
DOMException

getTextDecoration

public String getTextDecoration()
CSS2 の text-decoration プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setTextDecoration

public void setTextDecoration(String textDecoration)
                       throws DOMException
DOMException

getTextIndent

public String getTextIndent()
CSS2 の text-indent プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setTextIndent

public void setTextIndent(String textIndent)
                   throws DOMException
DOMException

getTextShadow

public String getTextShadow()
CSS2 の text-shadow プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setTextShadow

public void setTextShadow(String textShadow)
                   throws DOMException
DOMException

getTextTransform

public String getTextTransform()
CSS2 の text-transform プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setTextTransform

public void setTextTransform(String textTransform)
                      throws DOMException
DOMException

getTop

public String getTop()
CSS2 の top プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setTop

public void setTop(String top)
            throws DOMException
DOMException

getUnicodeBidi

public String getUnicodeBidi()
CSS2 の unicode-bidi プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setUnicodeBidi

public void setUnicodeBidi(String unicodeBidi)
                    throws DOMException
DOMException

getVerticalAlign

public String getVerticalAlign()
CSS2 の vertical-align プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setVerticalAlign

public void setVerticalAlign(String verticalAlign)
                      throws DOMException
DOMException

getVisibility

public String getVisibility()
CSS2 の visibility プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setVisibility

public void setVisibility(String visibility)
                   throws DOMException
DOMException

getVoiceFamily

public String getVoiceFamily()
CSS2 の voice-family プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setVoiceFamily

public void setVoiceFamily(String voiceFamily)
                    throws DOMException
DOMException

getVolume

public String getVolume()
CSS2 の volume プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setVolume

public void setVolume(String volume)
               throws DOMException
DOMException

getWhiteSpace

public String getWhiteSpace()
CSS2 の white-space プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setWhiteSpace

public void setWhiteSpace(String whiteSpace)
                   throws DOMException
DOMException

getWidows

public String getWidows()
CSS2 の windows プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setWidows

public void setWidows(String widows)
               throws DOMException
DOMException

getWidth

public String getWidth()
CSS2 の width プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setWidth

public void setWidth(String width)
              throws DOMException
DOMException

getWordSpacing

public String getWordSpacing()
CSS2 の word-spacing プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setWordSpacing

public void setWordSpacing(String wordSpacing)
                    throws DOMException
DOMException

getZIndex

public String getZIndex()
CSS2 の z-index プロパティの定義を参照してください。

例外:
DOMException - SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
NO_MODIFICATION_ALLOWED_ERR:このプロパティが読み取り専用の場合に 発生する

setZIndex

public void setZIndex(String zIndex)
               throws DOMException
DOMException

Common DOM API

バグや機能要求の報告
Java は、米国およびその他の国における米国 Sun Microsystems, Inc. の商標もしくは登録商標です。
Copyright 2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.