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
Headers
Gets or sets the list of id attribute values for header cells.
[DomName("headers")]
ISettableTokenList Headers { get; }
Property Value
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
RowSpan
Gets or sets the number of rows spanned by cell.
[DomName("rowSpan")]
int RowSpan { get; set; }