TextAreaExtensions.TextArea Método

Definição

Sobrecargas

TextArea(HtmlHelper, String)

Retorna o elemento de área de texto especificado usando o auxiliar HTML especificado e o nome do campo do formulário.

TextArea(HtmlHelper, String, IDictionary<String,Object>)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário e os atributos HTML especificados.

TextArea(HtmlHelper, String, Object)

Retorna o elemento textarea especificado usando o auxiliar HTML e os atributos HTML especificados.

TextArea(HtmlHelper, String, String)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário e o conteúdo do texto.

TextArea(HtmlHelper, String, String, IDictionary<String,Object>)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário, o conteúdo do texto e os atributos HTML especificados.

TextArea(HtmlHelper, String, String, Object)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário, o conteúdo do texto e os atributos HTML especificados.

TextArea(HtmlHelper, String, String, Int32, Int32, IDictionary<String,Object>)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário, o conteúdo do texto, o número de linhas e colunas e os atributos HTML especificados.

TextArea(HtmlHelper, String, String, Int32, Int32, Object)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário, o conteúdo do texto, o número de linhas e colunas e os atributos HTML especificados.

TextArea(HtmlHelper, String)

Retorna o elemento de área de texto especificado usando o auxiliar HTML especificado e o nome do campo do formulário.

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

A instância auxiliar HTML que este método estende.

name
String

O nome do campo de formulário a ser retornado.

Retornos

O elemento de área de texto.

Aplica-se a

TextArea(HtmlHelper, String, IDictionary<String,Object>)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário e os 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

A instância auxiliar HTML que este método estende.

name
String

O nome do campo de formulário a ser retornado.

htmlAttributes
IDictionary<String,Object>

Um objeto que contém os atributos HTML a serem definidos para o elemento .

Retornos

O elemento de área de texto.

Aplica-se a

TextArea(HtmlHelper, String, Object)

Retorna o elemento textarea especificado usando o auxiliar HTML e os atributos HTML especificados.

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

A instância auxiliar HTML que este método estende.

name
String

O nome do campo de formulário a ser retornado.

htmlAttributes
Object

Um objeto que contém os atributos HTML a serem definidos para o elemento .

Retornos

O elemento de área de texto.

Aplica-se a

TextArea(HtmlHelper, String, String)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário e o conteúdo do 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

A instância auxiliar HTML que este método estende.

name
String

O nome do campo de formulário a ser retornado.

value
String

O conteúdo do texto.

Retornos

O elemento de área de texto.

Aplica-se a

TextArea(HtmlHelper, String, String, IDictionary<String,Object>)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário, o conteúdo do texto e os 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

A instância auxiliar HTML que este método estende.

name
String

O nome do campo de formulário a ser retornado.

value
String

O conteúdo do texto.

htmlAttributes
IDictionary<String,Object>

Um objeto que contém os atributos HTML a serem definidos para o elemento .

Retornos

O elemento de área de texto.

Aplica-se a

TextArea(HtmlHelper, String, String, Object)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário, o conteúdo do texto e os 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

A instância auxiliar HTML que este método estende.

name
String

O nome do campo de formulário a ser retornado.

value
String

O conteúdo do texto.

htmlAttributes
Object

Um objeto que contém os atributos HTML a serem definidos para o elemento .

Retornos

O elemento de área de texto.

Aplica-se a

TextArea(HtmlHelper, String, String, Int32, Int32, IDictionary<String,Object>)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário, o conteúdo do texto, o número de linhas e colunas e os 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

A instância auxiliar HTML que este método estende.

name
String

O nome do campo de formulário a ser retornado.

value
String

O conteúdo do texto.

rows
Int32

O número de linhas.

columns
Int32

O número de colunas.

htmlAttributes
IDictionary<String,Object>

Um objeto que contém os atributos HTML a serem definidos para o elemento .

Retornos

O elemento de área de texto.

Aplica-se a

TextArea(HtmlHelper, String, String, Int32, Int32, Object)

Retorna o elemento textarea especificado usando o auxiliar HTML especificado, o nome do campo de formulário, o conteúdo do texto, o número de linhas e colunas e os 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

A instância auxiliar HTML que este método estende.

name
String

O nome do campo de formulário a ser retornado.

value
String

O conteúdo do texto.

rows
Int32

O número de linhas.

columns
Int32

O número de colunas.

htmlAttributes
Object

Um objeto que contém os atributos HTML a serem definidos para o elemento .

Retornos

O elemento de área de texto.

Aplica-se a