Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="HtmlBuilder"/> class.
 /// </summary>
 /// <param name="w">The w.</param>
 public HtmlBuilder(HtmlTextWriterEx w)
 {
     _textWriter = w;
 }
Beispiel #2
0
 /// <summary>
 /// Creates the HTML builder.
 /// </summary>
 /// <param name="w">The w.</param>
 /// <returns></returns>
 public virtual HtmlBuilder CreateHtmlBuilder(HtmlTextWriterEx w)
 {
     return new HtmlBuilder(w);
 }
Beispiel #3
0
 public HtmlBuilder(HtmlTextWriterEx w)
 {
     _textWriter = w;
 }
Beispiel #4
0
 public virtual HtmlBuilder CreateHtmlBuilder(HtmlTextWriterEx w)
 {
     return(new HtmlBuilder(w));
 }