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