public interface CSS2Properties
CSS2Properties
インタフェースは、CSSStyleDeclaration
内のプロパティーを取得および設定するための便利なメカニズムを表します。このインタフェースの属性は、CSS2 で規定されているすべてのプロパティーに対応します。このインタフェースの属性を取得することは、CSSStyleDeclaration
インタフェースの getPropertyValue
メソッドを呼び出すことと同じです。このインタフェースの属性を設定することは、CSSStyleDeclaration
インタフェースの setProperty
メソッドを呼び出すことと同じです。
CSS2Properties
インタフェースの実装には、仕様に準拠して実装された CSS モジュールは必要ありません。このインタフェースを実装していない実装の場合は、CSSStyleDeclaration
インタフェースのインスタンスから CSS2Properties
インタフェースにキャストするための、その言語に固有のメソッドを利用できることが期待されます。
このインタフェースを実装している実装の場合は、短縮形のプロパティーに特有の構文を理解して、そのセマンティクスを適用できることが期待されます。たとえば、margin
プロパティーを設定した場合、実際には、ベースとなる実装によって marginTop
、marginRight
、marginBottom
、および marginLeft
の各プロパティーが設定される必要があります。
CSS の「短縮形」のプロパティーを取り扱うときは、その構成要素である正式表記のプロパティーに分解する必要があります。また、その値が照会されたときは、ルールセット内での宣言に正確に一致する最短の形式で値を返す必要があります。ただし、短縮形の宣言を追加する際、ルールセット内ですでに宣言されているルールをなんらかの形で変更する (ルールセット内でまだ宣言されていない正式表記のルールを追加する) 必要がある場合には、その短縮形のプロパティーに対して空の文字列を返してください。
たとえば、font
プロパティーが照会された場合、"14pt Arial, sans-serif" で十分なときは、"normal normal normal 14pt/normal Arial, sans-serif" を返すべきではありません。「normal」という値は初期値であり、正式表記のプロパティーを使用した場合に暗黙に指定されるからです。
特定の文字列を構成する正式表記のプロパティーの値がすべて初期値である場合は、すべての初期値が含まれる文字列を返すべきです。たとえば、border-width
の値としては "" ではなく、"medium" を返すべきです。
欠落している値を反対側の辺から取得する一部の短縮形のプロパティー (margin
、padding
、border-[width|style|color]
など) については、辺の数を最小限にするべきです。つまり、"0px 10px 0px 10px" ではなく、"0px 10px" を返します。
"menu" という値を持つ font
プロパティーの場合のように、短縮形のプロパティーの値を、その構成要素である正式表記のプロパティーに分解できない場合には、構成要素である正式表記のプロパティーの値が照会されたときに、空の文字列を返すべきです。
「Document Object Model (DOM) Level 2 Style Specification」も参照してください。
修飾子と型 | メソッドと説明 |
---|---|
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)
CSS2 の azimuth プロパティーの定義を参照してください。
|
void |
setBackground(String background)
CSS2 の background プロパティーの定義を参照してください。
|
void |
setBackgroundAttachment(String backgroundAttachment)
CSS2 の background-attachment プロパティーの定義を参照してください。
|
void |
setBackgroundColor(String backgroundColor)
CSS2 の background-color プロパティーの定義を参照してください。
|
void |
setBackgroundImage(String backgroundImage)
CSS2 の background-image プロパティーの定義を参照してください。
|
void |
setBackgroundPosition(String backgroundPosition)
CSS2 の background-position プロパティーの定義を参照してください。
|
void |
setBackgroundRepeat(String backgroundRepeat)
CSS2 の background-repeat プロパティーの定義を参照してください。
|
void |
setBorder(String border)
CSS2 の border プロパティーの定義を参照してください。
|
void |
setBorderBottom(String borderBottom)
CSS2 の border-bottom プロパティーの定義を参照してください。
|
void |
setBorderBottomColor(String borderBottomColor)
CSS2 の border-bottom-color プロパティーの定義を参照してください。
|
void |
setBorderBottomStyle(String borderBottomStyle)
CSS2 の border-bottom-style プロパティーの定義を参照してください。
|
void |
setBorderBottomWidth(String borderBottomWidth)
CSS2 の border-bottom-width プロパティーの定義を参照してください。
|
void |
setBorderCollapse(String borderCollapse)
CSS2 の border-collapse プロパティーの定義を参照してください。
|
void |
setBorderColor(String borderColor)
CSS2 の border-color プロパティーの定義を参照してください。
|
void |
setBorderLeft(String borderLeft)
CSS2 の border-left プロパティーの定義を参照してください。
|
void |
setBorderLeftColor(String borderLeftColor)
CSS2 の border-left-color プロパティーの定義を参照してください。
|
void |
setBorderLeftStyle(String borderLeftStyle)
CSS2 の border-left-style プロパティーの定義を参照してください。
|
void |
setBorderLeftWidth(String borderLeftWidth)
CSS2 の border-left-width プロパティーの定義を参照してください。
|
void |
setBorderRight(String borderRight)
CSS2 の border-right プロパティーの定義を参照してください。
|
void |
setBorderRightColor(String borderRightColor)
CSS2 の border-right-color プロパティーの定義を参照してください。
|
void |
setBorderRightStyle(String borderRightStyle)
CSS2 の border-right-style プロパティーの定義を参照してください。
|
void |
setBorderRightWidth(String borderRightWidth)
CSS2 の border-right-width プロパティーの定義を参照してください。
|
void |
setBorderSpacing(String borderSpacing)
CSS2 の border-spacing プロパティーの定義を参照してください。
|
void |
setBorderStyle(String borderStyle)
CSS2 の border-style プロパティーの定義を参照してください。
|
void |
setBorderTop(String borderTop)
CSS2 の border-top プロパティーの定義を参照してください。
|
void |
setBorderTopColor(String borderTopColor)
CSS2 の border-top-color プロパティーの定義を参照してください。
|
void |
setBorderTopStyle(String borderTopStyle)
CSS2 の border-top-style プロパティーの定義を参照してください。
|
void |
setBorderTopWidth(String borderTopWidth)
CSS2 の border-top-width プロパティーの定義を参照してください。
|
void |
setBorderWidth(String borderWidth)
CSS2 の border-width プロパティーの定義を参照してください。
|
void |
setBottom(String bottom)
CSS2 の bottom プロパティーの定義を参照してください。
|
void |
setCaptionSide(String captionSide)
CSS2 の caption-side プロパティーの定義を参照してください。
|
void |
setClear(String clear)
CSS2 の clear プロパティーの定義を参照してください。
|
void |
setClip(String clip)
CSS2 の clip プロパティーの定義を参照してください。
|
void |
setColor(String color)
CSS2 の color プロパティーの定義を参照してください。
|
void |
setContent(String content)
CSS2 の content プロパティーの定義を参照してください。
|
void |
setCounterIncrement(String counterIncrement)
CSS2 の counter-increment プロパティーの定義を参照してください。
|
void |
setCounterReset(String counterReset)
CSS2 の counter-reset プロパティーの定義を参照してください。
|
void |
setCssFloat(String cssFloat)
CSS2 の float プロパティーの定義を参照してください。
|
void |
setCue(String cue)
CSS2 の cue プロパティーの定義を参照してください。
|
void |
setCueAfter(String cueAfter)
CSS2 の cue-after プロパティーの定義を参照してください。
|
void |
setCueBefore(String cueBefore)
CSS2 の cue-before プロパティーの定義を参照してください。
|
void |
setCursor(String cursor)
CSS2 の cursor プロパティーの定義を参照してください。
|
void |
setDirection(String direction)
CSS2 の direction プロパティーの定義を参照してください。
|
void |
setDisplay(String display)
CSS2 の display プロパティーの定義を参照してください。
|
void |
setElevation(String elevation)
CSS2 の elevation プロパティーの定義を参照してください。
|
void |
setEmptyCells(String emptyCells)
CSS2 の empty-cells プロパティーの定義を参照してください。
|
void |
setFont(String font)
CSS2 の font プロパティーの定義を参照してください。
|
void |
setFontFamily(String fontFamily)
CSS2 の font-family プロパティーの定義を参照してください。
|
void |
setFontSize(String fontSize)
CSS2 の font-size プロパティーの定義を参照してください。
|
void |
setFontSizeAdjust(String fontSizeAdjust)
CSS2 の font-size-adjust プロパティーの定義を参照してください。
|
void |
setFontStretch(String fontStretch)
CSS2 の font-stretch プロパティーの定義を参照してください。
|
void |
setFontStyle(String fontStyle)
CSS2 の font-style プロパティーの定義を参照してください。
|
void |
setFontVariant(String fontVariant)
CSS2 の font-variant プロパティーの定義を参照してください。
|
void |
setFontWeight(String fontWeight)
CSS2 の font-weight プロパティーの定義を参照してください。
|
void |
setHeight(String height)
CSS2 の height プロパティーの定義を参照してください。
|
void |
setLeft(String left)
CSS2 の left プロパティーの定義を参照してください。
|
void |
setLetterSpacing(String letterSpacing)
CSS2 の letter-spacing プロパティーの定義を参照してください。
|
void |
setLineHeight(String lineHeight)
CSS2 の line-height プロパティーの定義を参照してください。
|
void |
setListStyle(String listStyle)
CSS2 の list-style プロパティーの定義を参照してください。
|
void |
setListStyleImage(String listStyleImage)
CSS2 の list-style-image プロパティーの定義を参照してください。
|
void |
setListStylePosition(String listStylePosition)
CSS2 の list-style-position プロパティーの定義を参照してください。
|
void |
setListStyleType(String listStyleType)
CSS2 の list-style-type プロパティーの定義を参照してください。
|
void |
setMargin(String margin)
CSS2 の margin プロパティーの定義を参照してください。
|
void |
setMarginBottom(String marginBottom)
CSS2 の margin-bottom プロパティーの定義を参照してください。
|
void |
setMarginLeft(String marginLeft)
CSS2 の margin-left プロパティーの定義を参照してください。
|
void |
setMarginRight(String marginRight)
CSS2 の margin-right プロパティーの定義を参照してください。
|
void |
setMarginTop(String marginTop)
CSS2 の margin-top プロパティーの定義を参照してください。
|
void |
setMarkerOffset(String markerOffset)
CSS2 の marker-offset プロパティーの定義を参照してください。
|
void |
setMarks(String marks)
CSS2 の marks プロパティーの定義を参照してください。
|
void |
setMaxHeight(String maxHeight)
CSS2 の max-height プロパティーの定義を参照してください。
|
void |
setMaxWidth(String maxWidth)
CSS2 の max-width プロパティーの定義を参照してください。
|
void |
setMinHeight(String minHeight)
CSS2 の min-height プロパティーの定義を参照してください。
|
void |
setMinWidth(String minWidth)
CSS2 の min-width プロパティーの定義を参照してください。
|
void |
setOrphans(String orphans)
CSS2 の orphans プロパティーの定義を参照してください。
|
void |
setOutline(String outline)
CSS2 の outline プロパティーの定義を参照してください。
|
void |
setOutlineColor(String outlineColor)
CSS2 の outline-color プロパティーの定義を参照してください。
|
void |
setOutlineStyle(String outlineStyle)
CSS2 の outline-style プロパティーの定義を参照してください。
|
void |
setOutlineWidth(String outlineWidth)
CSS2 の outline-width プロパティーの定義を参照してください。
|
void |
setOverflow(String overflow)
CSS2 の overflow プロパティーの定義を参照してください。
|
void |
setPadding(String padding)
CSS2 の padding プロパティーの定義を参照してください。
|
void |
setPaddingBottom(String paddingBottom)
CSS2 の padding-bottom プロパティーの定義を参照してください。
|
void |
setPaddingLeft(String paddingLeft)
CSS2 の padding-left プロパティーの定義を参照してください。
|
void |
setPaddingRight(String paddingRight)
CSS2 の padding-right プロパティーの定義を参照してください。
|
void |
setPaddingTop(String paddingTop)
CSS2 の padding-top プロパティーの定義を参照してください。
|
void |
setPage(String page)
CSS2 の page プロパティーの定義を参照してください。
|
void |
setPageBreakAfter(String pageBreakAfter)
CSS2 の page-break-after プロパティーの定義を参照してください。
|
void |
setPageBreakBefore(String pageBreakBefore)
CSS2 の page-break-before プロパティーの定義を参照してください。
|
void |
setPageBreakInside(String pageBreakInside)
CSS2 の page-break-inside プロパティーの定義を参照してください。
|
void |
setPause(String pause)
CSS2 の pause プロパティーの定義を参照してください。
|
void |
setPauseAfter(String pauseAfter)
CSS2 の pause-after プロパティーの定義を参照してください。
|
void |
setPauseBefore(String pauseBefore)
CSS2 の pause-before プロパティーの定義を参照してください。
|
void |
setPitch(String pitch)
CSS2 の pitch プロパティーの定義を参照してください。
|
void |
setPitchRange(String pitchRange)
CSS2 の pitch-range プロパティーの定義を参照してください。
|
void |
setPlayDuring(String playDuring)
CSS2 の play-during プロパティーの定義を参照してください。
|
void |
setPosition(String position)
CSS2 の position プロパティーの定義を参照してください。
|
void |
setQuotes(String quotes)
CSS2 の quotes プロパティーの定義を参照してください。
|
void |
setRichness(String richness)
CSS2 の richness プロパティーの定義を参照してください。
|
void |
setRight(String right)
CSS2 の right プロパティーの定義を参照してください。
|
void |
setSize(String size)
CSS2 の size プロパティーの定義を参照してください。
|
void |
setSpeak(String speak)
CSS2 の speak プロパティーの定義を参照してください。
|
void |
setSpeakHeader(String speakHeader)
CSS2 の speak-header プロパティーの定義を参照してください。
|
void |
setSpeakNumeral(String speakNumeral)
CSS2 の speak-numeral プロパティーの定義を参照してください。
|
void |
setSpeakPunctuation(String speakPunctuation)
CSS2 の speak-punctuation プロパティーの定義を参照してください。
|
void |
setSpeechRate(String speechRate)
CSS2 の speech-rate プロパティーの定義を参照してください。
|
void |
setStress(String stress)
CSS2 の stress プロパティーの定義を参照してください。
|
void |
setTableLayout(String tableLayout)
CSS2 の table-layout プロパティーの定義を参照してください。
|
void |
setTextAlign(String textAlign)
CSS2 の text-align プロパティーの定義を参照してください。
|
void |
setTextDecoration(String textDecoration)
CSS2 の text-decoration プロパティーの定義を参照してください。
|
void |
setTextIndent(String textIndent)
CSS2 の text-indent プロパティーの定義を参照してください。
|
void |
setTextShadow(String textShadow)
CSS2 の text-shadow プロパティーの定義を参照してください。
|
void |
setTextTransform(String textTransform)
CSS2 の text-transform プロパティーの定義を参照してください。
|
void |
setTop(String top)
CSS2 の top プロパティーの定義を参照してください。
|
void |
setUnicodeBidi(String unicodeBidi)
CSS2 の unicode-bidi プロパティーの定義を参照してください。
|
void |
setVerticalAlign(String verticalAlign)
CSS2 の vertical-align プロパティーの定義を参照してください。
|
void |
setVisibility(String visibility)
CSS2 の visibility プロパティーの定義を参照してください。
|
void |
setVoiceFamily(String voiceFamily)
CSS2 の voice-family プロパティーの定義を参照してください。
|
void |
setVolume(String volume)
CSS2 の volume プロパティーの定義を参照してください。
|
void |
setWhiteSpace(String whiteSpace)
CSS2 の white-space プロパティーの定義を参照してください。
|
void |
setWidows(String widows)
CSS2 の windows プロパティーの定義を参照してください。
|
void |
setWidth(String width)
CSS2 の width プロパティーの定義を参照してください。
|
void |
setWordSpacing(String wordSpacing)
CSS2 の word-spacing プロパティーの定義を参照してください。
|
void |
setZIndex(String zIndex)
CSS2 の z-index プロパティーの定義を参照してください。
|
String getAzimuth()
void setAzimuth(String azimuth) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBackground()
void setBackground(String background) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBackgroundAttachment()
void setBackgroundAttachment(String backgroundAttachment) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBackgroundColor()
void setBackgroundColor(String backgroundColor) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBackgroundImage()
void setBackgroundImage(String backgroundImage) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBackgroundPosition()
void setBackgroundPosition(String backgroundPosition) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBackgroundRepeat()
void setBackgroundRepeat(String backgroundRepeat) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorder()
void setBorder(String border) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderCollapse()
void setBorderCollapse(String borderCollapse) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderColor()
void setBorderColor(String borderColor) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderSpacing()
void setBorderSpacing(String borderSpacing) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderStyle()
void setBorderStyle(String borderStyle) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderTop()
void setBorderTop(String borderTop) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderRight()
void setBorderRight(String borderRight) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderBottom()
void setBorderBottom(String borderBottom) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderLeft()
void setBorderLeft(String borderLeft) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderTopColor()
void setBorderTopColor(String borderTopColor) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderRightColor()
void setBorderRightColor(String borderRightColor) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderBottomColor()
void setBorderBottomColor(String borderBottomColor) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderLeftColor()
void setBorderLeftColor(String borderLeftColor) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderTopStyle()
void setBorderTopStyle(String borderTopStyle) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderRightStyle()
void setBorderRightStyle(String borderRightStyle) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderBottomStyle()
void setBorderBottomStyle(String borderBottomStyle) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderLeftStyle()
void setBorderLeftStyle(String borderLeftStyle) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderTopWidth()
void setBorderTopWidth(String borderTopWidth) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderRightWidth()
void setBorderRightWidth(String borderRightWidth) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderBottomWidth()
void setBorderBottomWidth(String borderBottomWidth) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderLeftWidth()
void setBorderLeftWidth(String borderLeftWidth) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBorderWidth()
void setBorderWidth(String borderWidth) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getBottom()
void setBottom(String bottom) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getCaptionSide()
void setCaptionSide(String captionSide) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getClear()
void setClear(String clear) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getClip()
void setClip(String clip) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getColor()
void setColor(String color) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getContent()
void setContent(String content) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getCounterIncrement()
void setCounterIncrement(String counterIncrement) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getCounterReset()
void setCounterReset(String counterReset) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getCue()
void setCue(String cue) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getCueAfter()
void setCueAfter(String cueAfter) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getCueBefore()
void setCueBefore(String cueBefore) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getCursor()
void setCursor(String cursor) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getDirection()
void setDirection(String direction) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getDisplay()
void setDisplay(String display) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getElevation()
void setElevation(String elevation) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getEmptyCells()
void setEmptyCells(String emptyCells) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getCssFloat()
void setCssFloat(String cssFloat) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getFont()
void setFont(String font) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getFontFamily()
void setFontFamily(String fontFamily) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getFontSize()
void setFontSize(String fontSize) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getFontSizeAdjust()
void setFontSizeAdjust(String fontSizeAdjust) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getFontStretch()
void setFontStretch(String fontStretch) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getFontStyle()
void setFontStyle(String fontStyle) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getFontVariant()
void setFontVariant(String fontVariant) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getFontWeight()
void setFontWeight(String fontWeight) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getHeight()
void setHeight(String height) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getLeft()
void setLeft(String left) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getLetterSpacing()
void setLetterSpacing(String letterSpacing) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getLineHeight()
void setLineHeight(String lineHeight) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getListStyle()
void setListStyle(String listStyle) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getListStyleImage()
void setListStyleImage(String listStyleImage) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getListStylePosition()
void setListStylePosition(String listStylePosition) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getListStyleType()
void setListStyleType(String listStyleType) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMargin()
void setMargin(String margin) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMarginTop()
void setMarginTop(String marginTop) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMarginRight()
void setMarginRight(String marginRight) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMarginBottom()
void setMarginBottom(String marginBottom) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMarginLeft()
void setMarginLeft(String marginLeft) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMarkerOffset()
void setMarkerOffset(String markerOffset) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMarks()
void setMarks(String marks) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMaxHeight()
void setMaxHeight(String maxHeight) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMaxWidth()
void setMaxWidth(String maxWidth) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMinHeight()
void setMinHeight(String minHeight) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getMinWidth()
void setMinWidth(String minWidth) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getOrphans()
void setOrphans(String orphans) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getOutline()
void setOutline(String outline) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getOutlineColor()
void setOutlineColor(String outlineColor) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getOutlineStyle()
void setOutlineStyle(String outlineStyle) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getOutlineWidth()
void setOutlineWidth(String outlineWidth) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getOverflow()
void setOverflow(String overflow) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPadding()
void setPadding(String padding) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPaddingTop()
void setPaddingTop(String paddingTop) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPaddingRight()
void setPaddingRight(String paddingRight) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPaddingBottom()
void setPaddingBottom(String paddingBottom) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPaddingLeft()
void setPaddingLeft(String paddingLeft) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPage()
void setPage(String page) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPageBreakAfter()
void setPageBreakAfter(String pageBreakAfter) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPageBreakBefore()
void setPageBreakBefore(String pageBreakBefore) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPageBreakInside()
void setPageBreakInside(String pageBreakInside) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPause()
void setPause(String pause) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPauseAfter()
void setPauseAfter(String pauseAfter) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPauseBefore()
void setPauseBefore(String pauseBefore) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPitch()
void setPitch(String pitch) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPitchRange()
void setPitchRange(String pitchRange) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPlayDuring()
void setPlayDuring(String playDuring) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getPosition()
void setPosition(String position) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getQuotes()
void setQuotes(String quotes) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getRichness()
void setRichness(String richness) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getRight()
void setRight(String right) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getSize()
void setSize(String size) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getSpeak()
void setSpeak(String speak) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getSpeakHeader()
void setSpeakHeader(String speakHeader) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getSpeakNumeral()
void setSpeakNumeral(String speakNumeral) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getSpeakPunctuation()
void setSpeakPunctuation(String speakPunctuation) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getSpeechRate()
void setSpeechRate(String speechRate) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getStress()
void setStress(String stress) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getTableLayout()
void setTableLayout(String tableLayout) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getTextAlign()
void setTextAlign(String textAlign) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getTextDecoration()
void setTextDecoration(String textDecoration) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getTextIndent()
void setTextIndent(String textIndent) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getTextShadow()
void setTextShadow(String textShadow) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getTextTransform()
void setTextTransform(String textTransform) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getTop()
void setTop(String top) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getUnicodeBidi()
void setUnicodeBidi(String unicodeBidi) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getVerticalAlign()
void setVerticalAlign(String verticalAlign) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getVisibility()
void setVisibility(String visibility) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getVoiceFamily()
void setVoiceFamily(String voiceFamily) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getVolume()
void setVolume(String volume) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getWhiteSpace()
void setWhiteSpace(String whiteSpace) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getWidows()
void setWidows(String widows) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getWidth()
void setWidth(String width) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getWordSpacing()
void setWordSpacing(String wordSpacing) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。String getZIndex()
void setZIndex(String zIndex) throws DOMException
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する。 バグまたは機能を送信
Java は米国ならびにその他の国における Oracle Corporation およびその関連企業の商標または登録商標です。
Copyright © 2005, 2013, Oracle and/or its affiliates. 500 Oracle Parkway
Redwood Shores, CA 94065 USA. All rights reserved.