Example #1
0
        public static void SetCellContent(this HtmlTable tableToAddTo, string content, int row, int column)
        {
            HtmlTableCell tableCell = GetCell(tableToAddTo, row, column);

            tableCell.SetContent(content);
        }