IHtmlTableSectionElement
public interface IHtmlTableSectionElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IGlobalEventHandlers
Represent the base of table section (tbody, thead, tfoot) elements.
using AngleSharp.Attributes;
using AngleSharp.Dom.Css;
using AngleSharp.Dom.Events;
namespace AngleSharp.Dom.Html
{
[DomName("HTMLTableSectionElement")]
public interface IHtmlTableSectionElement : IHtmlElement, IElement, INode, IEventTarget, IMarkupFormattable, IParentNode, IChildNode, INonDocumentTypeChildNode, IElementCssInlineStyle, IGlobalEventHandlers
{
[DomName("rows")]
IHtmlCollection<IHtmlTableRowElement> Rows { get; }
[DomName("insertRow")]
IHtmlTableRowElement InsertRowAt(int index = -1);
[DomName("deleteRow")]
void RemoveRowAt(int index);
}
}