Example #1
0
        public static HtmlTableRow NewRow(this HtmlTableSection section)
        {
            var newRow = new HtmlTableRow(section.Columns);

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