Interface HTMLTableRowElement

継承元:
HTMLElement
プロパティ:
align, bgColor, cells, ch, chOff, rowIndex, sectionRowIndex, vAlign
メソッド:
deleteCell, insertCell

テーブル内の行。 HTML 4.01 の TR 要素の定義 を参照。

プロパティ:

メソッド:

IDL 定義:

interface HTMLTableRowElement : HTMLElement {
  // Modified in DOM Level 2:
  readonly attribute long            rowIndex;
  // Modified in DOM Level 2:
  readonly attribute long            sectionRowIndex;
  // Modified in DOM Level 2:
  readonly attribute HTMLCollection  cells;
           attribute DOMString       align;
           attribute DOMString       bgColor;
           attribute DOMString       ch;
           attribute DOMString       chOff;
           attribute DOMString       vAlign;
  // Modified in DOM Level 2:
  HTMLElement        insertCell(in long index)
                                        raises(DOMException);
  // Modified in DOM Level 2:
  void               deleteCell(in long index)
                                        raises(DOMException);
};


Issued: / Revised: / All rights reserved. © 2002-2016 TAKI