Adf.Web.Styling.SmartPanelErrorStyler.StyleTableCell C# (CSharp) 메소드

StyleTableCell() 개인적인 정적인 메소드

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

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