Dart API Referencedart:htmlTableRowElement

TableRowElement Interface

DOM table row objects expose the HTMLTableRowElement interface, which provides special properties and methods (beyond the regular element object interface they also have available to them by inheritance) for manipulating the layout and presentation of rows in an HTML table.

Extends

Element

Constructors

Code new TableRowElement() #

TableRowElement();

Methods

Code void deleteCell(int index) #

row.insertCell
void deleteCell(int index);

Code Element insertCell(int index) #

Element insertCell(int index);

Fields

Code String align #

row.bgColor Deprecated
String align;

Code String bgColor #

row.cells
String bgColor;

Code final HTMLCollection cells #

row.ch
final HTMLCollection cells;

Code String ch #

row.chOff
String ch;

Code String chOff #

row.rowIndex
String chOff;

Code final int rowIndex #

row.sectionRowIndex
final int rowIndex;

Code final int sectionRowIndex #

row.vAlign
final int sectionRowIndex;

Code String vAlign #

String vAlign;

This page includes content from the Mozilla Foundation that is graciously licensed under a Creative Commons: Attribution-Sharealike license. Mozilla has no other association with Dart or dartlang.org. We encourage you to improve the web by contributing to The Mozilla Developer Network.