Exemplo n.º 1
0
        public static HtmlTableRow NewRow(this HtmlTableSection section)
        {
            var newRow = new HtmlTableRow(section.Columns);

            section.Add(newRow);
            return(newRow);
        }
Exemplo n.º 2
0
 public static void Add(this HtmlTableSection table, params object[] values) => table.Add((IEnumerable <object>)values);