Dart API Referencedart:htmlTableColElement

TableColElement Interface

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.

Extends

Element

Constructors

Code new TableColElement() #

TableColElement();

Fields

Code String align #

Indicates the horizontal alignment of the cell data in the column.
String align;

Code String ch #

Alignment character for cell data.
String ch;

Code String chOff #

Offset for the alignment character.
String chOff;

Code int span #

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

Code String vAlign #

Indicates the vertical alignment of the cell data in the column.
String vAlign;

Code String width #

Default column width.
String width;

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.