Haxe API Documentation
Back | Index
extern class js.html.TableColElement
extends Element
Available in js
DOM table column objects (which may correspond to <col>  or <colgroup> HTML elements) expose the HTMLTableColElement (or HTML 4 HTMLTableColElement) interface, which provides special properties (beyond the regular element object interface they also have available to them by inheritance) for manipulating table column elements.

Documentation for this class was provided by MDN.
var align : String
Indicates the horizontal alignment of the cell data in the column.
var ch : String
Alignment character for cell data.
var chOff : String
Offset for the alignment character.
var span : Int

Reflects the

span HTML attribute, indicating the number of columns to apply this object's attributes to. Must be a positive integer.

var vAlign : String
Indicates the vertical alignment of the cell data in the column.
var width : String
Default column width.
Back | Index