Beispiel #1
0
        public IList <Row> GetRows()
        {
            IList <Row> rows = new List <Row>();

            foreach (Element rowElement in TableElement.GetDescendantElements("tr"))
            {
                rows.Add(new Row(rowElement));
            }

            return(rows);
        }