IHtmlHelper.TextArea(String, String, Int32, Int32, Object) Method

Definition

Returns a <textarea> element for the specified expression. Adds content to the element body based on the first non-null value found in: the ModelState entry with full name, the value parameter, the ViewData entry with full name, or the expression evaluated against Model. See Name(String) for more information about a "full name".

C#
public Microsoft.AspNetCore.Html.IHtmlContent TextArea (string expression, string value, int rows, int columns, object htmlAttributes);

Parameters

expression
String

Expression name, relative to the current model.

value
String

If non-null, value to include in the element.

rows
Int32

Number of rows in the textarea.

columns
Int32

Number of columns in the textarea.

htmlAttributes
Object

An Object that contains the HTML attributes for the element. Alternatively, an IDictionary<TKey,TValue> instance containing the HTML attributes.

Returns

A new IHtmlContent containing the <textarea> element.

Remarks

Combines HtmlFieldPrefix and expression to set <textarea> element's "name" attribute. Sanitizes expression to set element's "id" attribute.

Applies to

Product Versions
ASP.NET Core 1.0, 1.1, 2.0, 2.1, 2.2, 3.0, 3.1, 5.0, 6.0, 7.0, 8.0, 9.0