Table of Contents

Interface IHtmlTableCellElement

Namespace
AngleSharp.Html.Dom
Assembly
AngleSharp.dll

Reprsents the base for td / th HTML element.

[DomName("HTMLTableCellElement")]
public interface IHtmlTableCellElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IGlobalEventHandlers
Inherited Members
Extension Methods

Properties

ColumnSpan

Gets or sets the number of columns spanned by cell.

[DomName("colSpan")]
int ColumnSpan { get; set; }

Property Value

int

Headers

Gets or sets the list of id attribute values for header cells.

[DomName("headers")]
ISettableTokenList Headers { get; }

Property Value

ISettableTokenList

Index

Gets the index of this cell in the row, starting from 0. This index is in document tree order and not display order.

[DomName("cellIndex")]
int Index { get; }

Property Value

int

RowSpan

Gets or sets the number of rows spanned by cell.

[DomName("rowSpan")]
int RowSpan { get; set; }

Property Value

int