Exemplo n.º 1
0
 internal HtmlTableSectionElement(HtmlDocument ownerDocument, string tagName) : base(ownerDocument, tagName)
 {
     Rows = new HtmlCollection(() => ChildNodes.OfType <HtmlTableRowElement>());
 }
Exemplo n.º 2
0
 internal HtmlTableRowElement(Document ownerDocument) : base(ownerDocument, TagsNames.Tr)
 {
     Cells = new HtmlCollection(() => ChildNodes.OfType <HtmlTableCellElement>());
 }
Exemplo n.º 3
0
 internal HtmlTableElement(Document ownerDocument) : base(ownerDocument, TagsNames.Table)
 {
     Rows    = new HtmlCollection(GetRows);
     TBodies = new HtmlCollection(() => ChildNodes.OfType <HtmlTableSectionElement>().Where(x => x.TagName == TagsNames.TBody));
 }