Telerik.Web.Mvc.UI.GridTagRepeatingAdorner.GridTagRepeatingAdorner C# (CSharp) Method

GridTagRepeatingAdorner() public method

public GridTagRepeatingAdorner ( int repeatCount ) : System.Collections.Generic
repeatCount int
return System.Collections.Generic
        public GridTagRepeatingAdorner(int repeatCount)
        {
            Guard.IsNotNegative(repeatCount, "repeatCount");

            RepeatCount = repeatCount;
            TagName = "td";
            RenderMode = TagRenderMode.Normal;
            Nbsp = true;
            CssClasses = new List<string>();
        }
GridTagRepeatingAdorner