TextAreaExtensions.TextArea Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
TextArea(HtmlHelper, String) |
Retourne l'élément textarea spécifié à l'aide de l'application d'assistance HTML spécifiée et du nom du champ de formulaire. |
TextArea(HtmlHelper, String, IDictionary<String,Object>) |
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire et des attributs HTML spécifiés. |
TextArea(HtmlHelper, String, Object) |
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML et des attributs HTML spécifiés. |
TextArea(HtmlHelper, String, String) |
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire et du contenu du texte. |
TextArea(HtmlHelper, String, String, IDictionary<String,Object>) |
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire, du contenu du texte et des attributs HTML spécifiés. |
TextArea(HtmlHelper, String, String, Object) |
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire, du contenu du texte et des attributs HTML spécifiés. |
TextArea(HtmlHelper, String, String, Int32, Int32, IDictionary<String,Object>) |
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire, du contenu du texte, du nombre de lignes et de colonnes et des attributs HTML spécifiés. |
TextArea(HtmlHelper, String, String, Int32, Int32, Object) |
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire, du contenu du texte, du nombre de lignes et de colonnes et des attributs HTML spécifiés. |
TextArea(HtmlHelper, String)
Retourne l'élément textarea spécifié à l'aide de l'application d'assistance HTML spécifiée et du nom du champ de formulaire.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire à retourner.
Retours
Élément textarea.
S’applique à
TextArea(HtmlHelper, String, IDictionary<String,Object>)
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire et des attributs HTML spécifiés.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire à retourner.
- htmlAttributes
- IDictionary<String,Object>
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément textarea.
S’applique à
TextArea(HtmlHelper, String, Object)
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML et des attributs HTML spécifiés.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire à retourner.
- htmlAttributes
- Object
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément textarea.
S’applique à
TextArea(HtmlHelper, String, String)
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire et du contenu du texte.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire à retourner.
- value
- String
Texte.
Retours
Élément textarea.
S’applique à
TextArea(HtmlHelper, String, String, IDictionary<String,Object>)
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire, du contenu du texte et des attributs HTML spécifiés.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire à retourner.
- value
- String
Texte.
- htmlAttributes
- IDictionary<String,Object>
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément textarea.
S’applique à
TextArea(HtmlHelper, String, String, Object)
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire, du contenu du texte et des attributs HTML spécifiés.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire à retourner.
- value
- String
Texte.
- htmlAttributes
- Object
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément textarea.
S’applique à
TextArea(HtmlHelper, String, String, Int32, Int32, IDictionary<String,Object>)
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire, du contenu du texte, du nombre de lignes et de colonnes et des attributs HTML spécifiés.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire à retourner.
- value
- String
Texte.
- rows
- Int32
Nombre de lignes.
- columns
- Int32
Nombre de colonnes.
- htmlAttributes
- IDictionary<String,Object>
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément textarea.
S’applique à
TextArea(HtmlHelper, String, String, Int32, Int32, Object)
Retourne l’élément textarea spécifié à l’aide de l’assistant HTML spécifié, du nom du champ de formulaire, du contenu du texte, du nombre de lignes et de colonnes et des attributs HTML spécifiés.
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
Paramètres
- htmlHelper
- HtmlHelper
Instance du programme d'assistance HTML qui est étendue par cette méthode.
- name
- String
Nom du champ de formulaire à retourner.
- value
- String
Texte.
- rows
- Int32
Nombre de lignes.
- columns
- Int32
Nombre de colonnes.
- htmlAttributes
- Object
Objet qui contient les attributs HTML à définir pour l’élément .
Retours
Élément textarea.