TextAreaExtensions.TextArea Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
TextArea(HtmlHelper, String) |
Devuelve el elemento de área de texto especificado utilizando el asistente de HTML especificado y el nombre del campo de formulario. |
TextArea(HtmlHelper, String, IDictionary<String,Object>) |
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario y los atributos HTML especificados. |
TextArea(HtmlHelper, String, Object) |
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado y los atributos HTML. |
TextArea(HtmlHelper, String, String) |
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario y el contenido del texto. |
TextArea(HtmlHelper, String, String, IDictionary<String,Object>) |
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario, el contenido del texto y los atributos HTML especificados. |
TextArea(HtmlHelper, String, String, Object) |
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario, el contenido del texto y los atributos HTML especificados. |
TextArea(HtmlHelper, String, String, Int32, Int32, IDictionary<String,Object>) |
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario, el contenido del texto, el número de filas y columnas y los atributos HTML especificados. |
TextArea(HtmlHelper, String, String, Int32, Int32, Object) |
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario, el contenido del texto, el número de filas y columnas y los atributos HTML especificados. |
TextArea(HtmlHelper, String)
Devuelve el elemento de área de texto especificado utilizando el asistente de HTML especificado y el nombre del campo de formulario.
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
Parámetros
- htmlHelper
- HtmlHelper
Instancia del asistente HTML que extiende este método.
- name
- String
Nombre del campo de formulario que se va a devolver.
Devoluciones
Elemento de área de texto.
Se aplica a
TextArea(HtmlHelper, String, IDictionary<String,Object>)
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario y los atributos HTML especificados.
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
Parámetros
- htmlHelper
- HtmlHelper
Instancia del asistente HTML que extiende este método.
- name
- String
Nombre del campo de formulario que se va a devolver.
- htmlAttributes
- IDictionary<String,Object>
Objeto que contiene los atributos HTML que se van a establecer para el elemento .
Devoluciones
Elemento de área de texto.
Se aplica a
TextArea(HtmlHelper, String, Object)
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado y los atributos HTML.
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
Parámetros
- htmlHelper
- HtmlHelper
Instancia del asistente HTML que extiende este método.
- name
- String
Nombre del campo de formulario que se va a devolver.
- htmlAttributes
- Object
Objeto que contiene los atributos HTML que se van a establecer para el elemento .
Devoluciones
Elemento de área de texto.
Se aplica a
TextArea(HtmlHelper, String, String)
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario y el contenido del texto.
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
Parámetros
- htmlHelper
- HtmlHelper
Instancia del asistente HTML que extiende este método.
- name
- String
Nombre del campo de formulario que se va a devolver.
- value
- String
Contenido de texto.
Devoluciones
Elemento de área de texto.
Se aplica a
TextArea(HtmlHelper, String, String, IDictionary<String,Object>)
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario, el contenido del texto y los atributos HTML especificados.
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
Parámetros
- htmlHelper
- HtmlHelper
Instancia del asistente HTML que extiende este método.
- name
- String
Nombre del campo de formulario que se va a devolver.
- value
- String
Contenido de texto.
- htmlAttributes
- IDictionary<String,Object>
Objeto que contiene los atributos HTML que se van a establecer para el elemento .
Devoluciones
Elemento de área de texto.
Se aplica a
TextArea(HtmlHelper, String, String, Object)
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario, el contenido del texto y los atributos HTML especificados.
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
Parámetros
- htmlHelper
- HtmlHelper
Instancia del asistente HTML que extiende este método.
- name
- String
Nombre del campo de formulario que se va a devolver.
- value
- String
Contenido de texto.
- htmlAttributes
- Object
Objeto que contiene los atributos HTML que se van a establecer para el elemento .
Devoluciones
Elemento de área de texto.
Se aplica a
TextArea(HtmlHelper, String, String, Int32, Int32, IDictionary<String,Object>)
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario, el contenido del texto, el número de filas y columnas y los atributos HTML especificados.
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
Parámetros
- htmlHelper
- HtmlHelper
Instancia del asistente HTML que extiende este método.
- name
- String
Nombre del campo de formulario que se va a devolver.
- value
- String
Contenido de texto.
- rows
- Int32
Número de filas.
- columns
- Int32
El número de columnas.
- htmlAttributes
- IDictionary<String,Object>
Objeto que contiene los atributos HTML que se van a establecer para el elemento .
Devoluciones
Elemento de área de texto.
Se aplica a
TextArea(HtmlHelper, String, String, Int32, Int32, Object)
Devuelve el elemento textarea especificado mediante el asistente de HTML especificado, el nombre del campo de formulario, el contenido del texto, el número de filas y columnas y los atributos HTML especificados.
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
Parámetros
- htmlHelper
- HtmlHelper
Instancia del asistente HTML que extiende este método.
- name
- String
Nombre del campo de formulario que se va a devolver.
- value
- String
Contenido de texto.
- rows
- Int32
Número de filas.
- columns
- Int32
El número de columnas.
- htmlAttributes
- Object
Objeto que contiene los atributos HTML que se van a establecer para el elemento .
Devoluciones
Elemento de área de texto.