テーブル内の行。 HTML 4.01 の TR 要素の定義 を参照。
alignbgColorcellsHTMLCollection型, 読取専用
chchOffrowIndexlong型, 読取専用
rowIndex はテーブル内のセクション (THEAD, TFOOT, TBODY) を考慮し、インデックスにおいてはまず THEAD の行、 TBODY の行、 TFOOT の行と続く。sectionRowIndexlong型, 読取専用
THEAD, TFOOT, TBODY) の中でのインデックス。 0 から数える。vAligndeleteCell( index )現在の行からセルを削除する。
(無し)
index がセルの総数以上か、または index が -1 以外の負数である場合に発生。insertCell( index )この行に空の TD セルを挿入する。 index が -1 であるかセルの総数と等しい場合は、新しいセルが追加される。
HTMLElement 型。新しく作成されたセル。
index がセルの総数よりも大きいか、または index が -1 以外の負数である場合に発生。
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);
};