Haxe API Documentation
Back | Index
extern class js.html.TableRowElement
extends Element
Available in js
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.

Documentation for this class was provided by MDN.
var align : String

row.bgColor

Deprecated

var bgColor : String
row.cells
var cells(default,null) : HTMLCollection
row.ch
var ch : String
row.chOff
var chOff : String
row.rowIndex
var rowIndex(default,null) : Int
row.sectionRowIndex
var sectionRowIndex(default,null) : Int
row.vAlign
var vAlign : String
function deleteCell(index : Int) : Void
function insertCell(index : Int) : Element
Back | Index