/// <summary> /// /// </summary> public TextArea.Builder TextArea(TextArea.Config config) { #if MVC return(new TextArea.Builder(new TextArea(config) { ViewContext = this.HtmlHelper != null ? this.HtmlHelper.ViewContext : null })); #else return(new TextArea.Builder(new TextArea(config))); #endif }
/// <summary> /// /// </summary> public Builder(TextArea.Config config) : base(new TextArea(config)) { }
/// <summary> /// /// </summary> public TextArea.Builder TextArea(TextArea.Config config) { return(new TextArea.Builder(new TextArea(config))); }