|
Common DOM API | ||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
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)
|
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)
|
メソッドの詳細 |
public String getAzimuth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setAzimuth(String azimuth) throws DOMException
DOMException
public String getBackground()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBackground(String background) throws DOMException
DOMException
public String getBackgroundAttachment()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBackgroundAttachment(String backgroundAttachment) throws DOMException
DOMException
public String getBackgroundColor()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBackgroundColor(String backgroundColor) throws DOMException
DOMException
public String getBackgroundImage()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBackgroundImage(String backgroundImage) throws DOMException
DOMException
public String getBackgroundPosition()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBackgroundPosition(String backgroundPosition) throws DOMException
DOMException
public String getBackgroundRepeat()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBackgroundRepeat(String backgroundRepeat) throws DOMException
DOMException
public String getBorder()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorder(String border) throws DOMException
DOMException
public String getBorderCollapse()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderCollapse(String borderCollapse) throws DOMException
DOMException
public String getBorderColor()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderColor(String borderColor) throws DOMException
DOMException
public String getBorderSpacing()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderSpacing(String borderSpacing) throws DOMException
DOMException
public String getBorderStyle()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderStyle(String borderStyle) throws DOMException
DOMException
public String getBorderTop()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderTop(String borderTop) throws DOMException
DOMException
public String getBorderRight()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderRight(String borderRight) throws DOMException
DOMException
public String getBorderBottom()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderBottom(String borderBottom) throws DOMException
DOMException
public String getBorderLeft()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderLeft(String borderLeft) throws DOMException
DOMException
public String getBorderTopColor()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderTopColor(String borderTopColor) throws DOMException
DOMException
public String getBorderRightColor()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderRightColor(String borderRightColor) throws DOMException
DOMException
public String getBorderBottomColor()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderBottomColor(String borderBottomColor) throws DOMException
DOMException
public String getBorderLeftColor()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderLeftColor(String borderLeftColor) throws DOMException
DOMException
public String getBorderTopStyle()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderTopStyle(String borderTopStyle) throws DOMException
DOMException
public String getBorderRightStyle()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderRightStyle(String borderRightStyle) throws DOMException
DOMException
public String getBorderBottomStyle()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderBottomStyle(String borderBottomStyle) throws DOMException
DOMException
public String getBorderLeftStyle()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderLeftStyle(String borderLeftStyle) throws DOMException
DOMException
public String getBorderTopWidth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderTopWidth(String borderTopWidth) throws DOMException
DOMException
public String getBorderRightWidth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderRightWidth(String borderRightWidth) throws DOMException
DOMException
public String getBorderBottomWidth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderBottomWidth(String borderBottomWidth) throws DOMException
DOMException
public String getBorderLeftWidth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderLeftWidth(String borderLeftWidth) throws DOMException
DOMException
public String getBorderWidth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBorderWidth(String borderWidth) throws DOMException
DOMException
public String getBottom()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setBottom(String bottom) throws DOMException
DOMException
public String getCaptionSide()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setCaptionSide(String captionSide) throws DOMException
DOMException
public String getClear()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setClear(String clear) throws DOMException
DOMException
public String getClip()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setClip(String clip) throws DOMException
DOMException
public String getColor()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setColor(String color) throws DOMException
DOMException
public String getContent()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setContent(String content) throws DOMException
DOMException
public String getCounterIncrement()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setCounterIncrement(String counterIncrement) throws DOMException
DOMException
public String getCounterReset()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setCounterReset(String counterReset) throws DOMException
DOMException
public String getCue()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setCue(String cue) throws DOMException
DOMException
public String getCueAfter()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setCueAfter(String cueAfter) throws DOMException
DOMException
public String getCueBefore()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setCueBefore(String cueBefore) throws DOMException
DOMException
public String getCursor()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setCursor(String cursor) throws DOMException
DOMException
public String getDirection()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setDirection(String direction) throws DOMException
DOMException
public String getDisplay()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setDisplay(String display) throws DOMException
DOMException
public String getElevation()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setElevation(String elevation) throws DOMException
DOMException
public String getEmptyCells()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setEmptyCells(String emptyCells) throws DOMException
DOMException
public String getCssFloat()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setCssFloat(String cssFloat) throws DOMException
DOMException
public String getFont()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setFont(String font) throws DOMException
DOMException
public String getFontFamily()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setFontFamily(String fontFamily) throws DOMException
DOMException
public String getFontSize()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setFontSize(String fontSize) throws DOMException
DOMException
public String getFontSizeAdjust()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setFontSizeAdjust(String fontSizeAdjust) throws DOMException
DOMException
public String getFontStretch()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setFontStretch(String fontStretch) throws DOMException
DOMException
public String getFontStyle()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setFontStyle(String fontStyle) throws DOMException
DOMException
public String getFontVariant()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setFontVariant(String fontVariant) throws DOMException
DOMException
public String getFontWeight()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setFontWeight(String fontWeight) throws DOMException
DOMException
public String getHeight()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setHeight(String height) throws DOMException
DOMException
public String getLeft()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setLeft(String left) throws DOMException
DOMException
public String getLetterSpacing()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setLetterSpacing(String letterSpacing) throws DOMException
DOMException
public String getLineHeight()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setLineHeight(String lineHeight) throws DOMException
DOMException
public String getListStyle()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setListStyle(String listStyle) throws DOMException
DOMException
public String getListStyleImage()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setListStyleImage(String listStyleImage) throws DOMException
DOMException
public String getListStylePosition()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setListStylePosition(String listStylePosition) throws DOMException
DOMException
public String getListStyleType()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setListStyleType(String listStyleType) throws DOMException
DOMException
public String getMargin()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMargin(String margin) throws DOMException
DOMException
public String getMarginTop()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMarginTop(String marginTop) throws DOMException
DOMException
public String getMarginRight()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMarginRight(String marginRight) throws DOMException
DOMException
public String getMarginBottom()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMarginBottom(String marginBottom) throws DOMException
DOMException
public String getMarginLeft()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMarginLeft(String marginLeft) throws DOMException
DOMException
public String getMarkerOffset()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMarkerOffset(String markerOffset) throws DOMException
DOMException
public String getMarks()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMarks(String marks) throws DOMException
DOMException
public String getMaxHeight()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMaxHeight(String maxHeight) throws DOMException
DOMException
public String getMaxWidth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMaxWidth(String maxWidth) throws DOMException
DOMException
public String getMinHeight()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMinHeight(String minHeight) throws DOMException
DOMException
public String getMinWidth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setMinWidth(String minWidth) throws DOMException
DOMException
public String getOrphans()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setOrphans(String orphans) throws DOMException
DOMException
public String getOutline()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setOutline(String outline) throws DOMException
DOMException
public String getOutlineColor()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setOutlineColor(String outlineColor) throws DOMException
DOMException
public String getOutlineStyle()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setOutlineStyle(String outlineStyle) throws DOMException
DOMException
public String getOutlineWidth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setOutlineWidth(String outlineWidth) throws DOMException
DOMException
public String getOverflow()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setOverflow(String overflow) throws DOMException
DOMException
public String getPadding()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPadding(String padding) throws DOMException
DOMException
public String getPaddingTop()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPaddingTop(String paddingTop) throws DOMException
DOMException
public String getPaddingRight()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPaddingRight(String paddingRight) throws DOMException
DOMException
public String getPaddingBottom()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPaddingBottom(String paddingBottom) throws DOMException
DOMException
public String getPaddingLeft()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPaddingLeft(String paddingLeft) throws DOMException
DOMException
public String getPage()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPage(String page) throws DOMException
DOMException
public String getPageBreakAfter()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPageBreakAfter(String pageBreakAfter) throws DOMException
DOMException
public String getPageBreakBefore()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPageBreakBefore(String pageBreakBefore) throws DOMException
DOMException
public String getPageBreakInside()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPageBreakInside(String pageBreakInside) throws DOMException
DOMException
public String getPause()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPause(String pause) throws DOMException
DOMException
public String getPauseAfter()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPauseAfter(String pauseAfter) throws DOMException
DOMException
public String getPauseBefore()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPauseBefore(String pauseBefore) throws DOMException
DOMException
public String getPitch()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPitch(String pitch) throws DOMException
DOMException
public String getPitchRange()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPitchRange(String pitchRange) throws DOMException
DOMException
public String getPlayDuring()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPlayDuring(String playDuring) throws DOMException
DOMException
public String getPosition()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setPosition(String position) throws DOMException
DOMException
public String getQuotes()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setQuotes(String quotes) throws DOMException
DOMException
public String getRichness()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setRichness(String richness) throws DOMException
DOMException
public String getRight()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setRight(String right) throws DOMException
DOMException
public String getSize()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setSize(String size) throws DOMException
DOMException
public String getSpeak()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setSpeak(String speak) throws DOMException
DOMException
public String getSpeakHeader()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setSpeakHeader(String speakHeader) throws DOMException
DOMException
public String getSpeakNumeral()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setSpeakNumeral(String speakNumeral) throws DOMException
DOMException
public String getSpeakPunctuation()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setSpeakPunctuation(String speakPunctuation) throws DOMException
DOMException
public String getSpeechRate()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setSpeechRate(String speechRate) throws DOMException
DOMException
public String getStress()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setStress(String stress) throws DOMException
DOMException
public String getTableLayout()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setTableLayout(String tableLayout) throws DOMException
DOMException
public String getTextAlign()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setTextAlign(String textAlign) throws DOMException
DOMException
public String getTextDecoration()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setTextDecoration(String textDecoration) throws DOMException
DOMException
public String getTextIndent()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setTextIndent(String textIndent) throws DOMException
DOMException
public String getTextShadow()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setTextShadow(String textShadow) throws DOMException
DOMException
public String getTextTransform()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setTextTransform(String textTransform) throws DOMException
DOMException
public String getTop()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setTop(String top) throws DOMException
DOMException
public String getUnicodeBidi()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setUnicodeBidi(String unicodeBidi) throws DOMException
DOMException
public String getVerticalAlign()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setVerticalAlign(String verticalAlign) throws DOMException
DOMException
public String getVisibility()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setVisibility(String visibility) throws DOMException
DOMException
public String getVoiceFamily()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setVoiceFamily(String voiceFamily) throws DOMException
DOMException
public String getVolume()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setVolume(String volume) throws DOMException
DOMException
public String getWhiteSpace()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setWhiteSpace(String whiteSpace) throws DOMException
DOMException
public String getWidows()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setWidows(String widows) throws DOMException
DOMException
public String getWidth()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setWidth(String width) throws DOMException
DOMException
public String getWordSpacing()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setWordSpacing(String wordSpacing) throws DOMException
DOMException
public String getZIndex()
DOMException
- SYNTAX_ERR:新しい値に構文エラーがあり、解析できない場合に発生する
public void setZIndex(String zIndex) throws DOMException
DOMException
|
Common DOM API | ||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |