共用方式為


HtmlHelper.TextArea(String, String, Int32, Int32, Object) 方法

定義

傳 < 回指定 expression 之 的 textarea > 元素。 根據 中找到的第一個非 null 值,將內容新增至專案主體: ModelState 具有完整名稱的專案、 value 參數、 ViewData 具有完整名稱的專案,或 expression 針對 評估的 Model 。 如需有關「完整名稱」的詳細資訊,請參閱 Name(String)

public:
 virtual Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(System::String ^ expression, System::String ^ value, int rows, int columns, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent TextArea (string expression, string value, int rows, int columns, object htmlAttributes);
abstract member TextArea : string * string * int * int * obj -> Microsoft.AspNetCore.Html.IHtmlContent
override this.TextArea : string * string * int * int * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function TextArea (expression As String, value As String, rows As Integer, columns As Integer, htmlAttributes As Object) As IHtmlContent

參數

expression
String

相對於目前模型的運算式名稱。

value
String

如果不是 null ,則為 要包含在 元素中的值。

rows
Int32

textarea 中的資料列數目。

columns
Int32

textarea 中的資料行數目。

htmlAttributes
Object

Object,包含 專案的 HTML 屬性。 或者,包含 IDictionary<TKey,TValue> HTML 屬性的實例。

傳回

包含 textarea > 元素的新 。 IHtmlContent<

實作

適用於