Adf.Web.Styling.SmartPanelErrorStyler.StyleTableCell C# (CSharp) Method

StyleTableCell() private static method

private static StyleTableCell ( System.Web.UI.WebControls.TableCell cell ) : void
cell System.Web.UI.WebControls.TableCell
return void
        private static void StyleTableCell(TableCell cell)
        {
            if (cell == null) return;

            foreach (var control in cell.Controls.OfType<WebControl>())
            {
                StyleControl(control);
            }
        }