HtmlHelper<TModel>.TextAreaFor<TResult> 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, or the expression evaluated against Model. See NameFor<TResult>(Expression<Func<TModel,TResult>>) for more information about a "full name".

C#
public Microsoft.AspNetCore.Html.IHtmlContent TextAreaFor<TResult> (System.Linq.Expressions.Expression<Func<TModel,TResult>> expression, int rows, int columns, object htmlAttributes);

Type Parameters

TResult

The type of the expression result.

Parameters

expression
Expression<Func<TModel,TResult>>

An expression to be evaluated against the current model.

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.

Implements

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