TextAreaExtensions.TextArea 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
TextArea(HtmlHelper, String) |
通过使用指定的 HTML 帮助器和窗体字段的名称,返回指定的 textarea 元素。 |
TextArea(HtmlHelper, String, IDictionary<String,Object>) |
通过使用指定的 HTML 帮助程序、表单字段的名称和指定的 HTML 属性返回指定的 textarea 元素。 |
TextArea(HtmlHelper, String, Object) |
使用指定的 HTML 帮助器和 HTML 属性返回指定的 textarea 元素。 |
TextArea(HtmlHelper, String, String) |
通过使用指定的 HTML 帮助程序、表单字段的名称和文本内容返回指定的 textarea 元素。 |
TextArea(HtmlHelper, String, String, IDictionary<String,Object>) |
通过使用指定的 HTML 帮助程序、表单字段的名称、文本内容和指定的 HTML 属性返回指定的 textarea 元素。 |
TextArea(HtmlHelper, String, String, Object) |
通过使用指定的 HTML 帮助程序、表单字段的名称、文本内容和指定的 HTML 属性返回指定的 textarea 元素。 |
TextArea(HtmlHelper, String, String, Int32, Int32, IDictionary<String,Object>) |
通过使用指定的 HTML 帮助程序、表单字段的名称、文本内容、行数和列数以及指定的 HTML 属性返回指定的 textarea 元素。 |
TextArea(HtmlHelper, String, String, Int32, Int32, Object) |
通过使用指定的 HTML 帮助程序、表单字段的名称、文本内容、行数和列数以及指定的 HTML 属性返回指定的 textarea 元素。 |
TextArea(HtmlHelper, String)
通过使用指定的 HTML 帮助器和窗体字段的名称,返回指定的 textarea 元素。
public static System.Web.Mvc.MvcHtmlString TextArea (this System.Web.Mvc.HtmlHelper htmlHelper, string name);
static member TextArea : System.Web.Mvc.HtmlHelper * string -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextArea (htmlHelper As HtmlHelper, name As String) As MvcHtmlString
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- name
- String
要返回的窗体字段的名称。
返回
textarea 元素。
适用于
TextArea(HtmlHelper, String, IDictionary<String,Object>)
通过使用指定的 HTML 帮助程序、表单字段的名称和指定的 HTML 属性返回指定的 textarea 元素。
public static System.Web.Mvc.MvcHtmlString TextArea (this System.Web.Mvc.HtmlHelper htmlHelper, string name, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member TextArea : System.Web.Mvc.HtmlHelper * string * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextArea (htmlHelper As HtmlHelper, name As String, htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- name
- String
要返回的窗体字段的名称。
- htmlAttributes
- IDictionary<String,Object>
一个 对象,其中包含要为 元素设置的 HTML 属性。
返回
textarea 元素。
适用于
TextArea(HtmlHelper, String, Object)
使用指定的 HTML 帮助器和 HTML 属性返回指定的 textarea 元素。
public static System.Web.Mvc.MvcHtmlString TextArea (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object htmlAttributes);
static member TextArea : System.Web.Mvc.HtmlHelper * string * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextArea (htmlHelper As HtmlHelper, name As String, htmlAttributes As Object) As MvcHtmlString
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- name
- String
要返回的窗体字段的名称。
- htmlAttributes
- Object
一个 对象,其中包含要为 元素设置的 HTML 属性。
返回
textarea 元素。
适用于
TextArea(HtmlHelper, String, String)
通过使用指定的 HTML 帮助程序、表单字段的名称和文本内容返回指定的 textarea 元素。
public static System.Web.Mvc.MvcHtmlString TextArea (this System.Web.Mvc.HtmlHelper htmlHelper, string name, string value);
static member TextArea : System.Web.Mvc.HtmlHelper * string * string -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextArea (htmlHelper As HtmlHelper, name As String, value As String) As MvcHtmlString
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- name
- String
要返回的窗体字段的名称。
- value
- String
文本内容。
返回
textarea 元素。
适用于
TextArea(HtmlHelper, String, String, IDictionary<String,Object>)
通过使用指定的 HTML 帮助程序、表单字段的名称、文本内容和指定的 HTML 属性返回指定的 textarea 元素。
public static System.Web.Mvc.MvcHtmlString TextArea (this System.Web.Mvc.HtmlHelper htmlHelper, string name, string value, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member TextArea : System.Web.Mvc.HtmlHelper * string * string * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextArea (htmlHelper As HtmlHelper, name As String, value As String, htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- name
- String
要返回的窗体字段的名称。
- value
- String
文本内容。
- htmlAttributes
- IDictionary<String,Object>
一个 对象,其中包含要为 元素设置的 HTML 属性。
返回
textarea 元素。
适用于
TextArea(HtmlHelper, String, String, Object)
通过使用指定的 HTML 帮助程序、表单字段的名称、文本内容和指定的 HTML 属性返回指定的 textarea 元素。
public static System.Web.Mvc.MvcHtmlString TextArea (this System.Web.Mvc.HtmlHelper htmlHelper, string name, string value, object htmlAttributes);
static member TextArea : System.Web.Mvc.HtmlHelper * string * string * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextArea (htmlHelper As HtmlHelper, name As String, value As String, htmlAttributes As Object) As MvcHtmlString
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- name
- String
要返回的窗体字段的名称。
- value
- String
文本内容。
- htmlAttributes
- Object
一个 对象,其中包含要为 元素设置的 HTML 属性。
返回
textarea 元素。
适用于
TextArea(HtmlHelper, String, String, Int32, Int32, IDictionary<String,Object>)
通过使用指定的 HTML 帮助程序、表单字段的名称、文本内容、行数和列数以及指定的 HTML 属性返回指定的 textarea 元素。
public static System.Web.Mvc.MvcHtmlString TextArea (this System.Web.Mvc.HtmlHelper htmlHelper, string name, string value, int rows, int columns, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member TextArea : System.Web.Mvc.HtmlHelper * string * string * int * int * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextArea (htmlHelper As HtmlHelper, name As String, value As String, rows As Integer, columns As Integer, htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- name
- String
要返回的窗体字段的名称。
- value
- String
文本内容。
- rows
- Int32
行数。
- columns
- Int32
列数。
- htmlAttributes
- IDictionary<String,Object>
一个 对象,其中包含要为 元素设置的 HTML 属性。
返回
textarea 元素。
适用于
TextArea(HtmlHelper, String, String, Int32, Int32, Object)
通过使用指定的 HTML 帮助程序、表单字段的名称、文本内容、行数和列数以及指定的 HTML 属性返回指定的 textarea 元素。
public static System.Web.Mvc.MvcHtmlString TextArea (this System.Web.Mvc.HtmlHelper htmlHelper, string name, string value, int rows, int columns, object htmlAttributes);
static member TextArea : System.Web.Mvc.HtmlHelper * string * string * int * int * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextArea (htmlHelper As HtmlHelper, name As String, value As String, rows As Integer, columns As Integer, htmlAttributes As Object) As MvcHtmlString
参数
- htmlHelper
- HtmlHelper
此方法扩展的 HTML 帮助器实例。
- name
- String
要返回的窗体字段的名称。
- value
- String
文本内容。
- rows
- Int32
行数。
- columns
- Int32
列数。
- htmlAttributes
- Object
一个 对象,其中包含要为 元素设置的 HTML 属性。
返回
textarea 元素。