public HtmlTagWrapper AddChildAt(int index, IHtmlTagWrapper newChild)
 {
     _children.Insert(index, newChild);
     return(this);
 }
Beispiel #2
0
        public HtmlTagWrapper AddChildAt(int index, IHtmlTagWrapper newChild)
        {
			_children.Insert(index, newChild);
            return this;
        }
 public HtmlTagWrapper AddChild(IHtmlTagWrapper newChild)
 {
     _children.Add(newChild);
     return(this);
 }
Beispiel #4
0
        public HtmlTagWrapper AddChild(IHtmlTagWrapper newChild)
        {
			_children.Add(newChild);
            return this;
        }