1 implementation of TextArea
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
HtmlHelper.cs (1)
655public IHtmlContent TextArea(string expression, string value, int rows, int columns, object htmlAttributes)
5 references to TextArea
Microsoft.AspNetCore.Mvc.ViewFeatures (5)
DefaultEditorTemplates.cs (1)
221return htmlHelper.TextArea(
Rendering\HtmlHelperInputExtensions.cs (4)
647return htmlHelper.TextArea(expression, value: null, rows: 0, columns: 0, htmlAttributes: null); 678return htmlHelper.TextArea(expression, value: null, rows: 0, columns: 0, htmlAttributes: htmlAttributes); 706return htmlHelper.TextArea(expression, value, rows: 0, columns: 0, htmlAttributes: null); 740return htmlHelper.TextArea(expression, value, rows: 0, columns: 0, htmlAttributes: htmlAttributes);