HtmlHelperInputExtensions.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(IHtmlHelper, String) |
Retourne un <élément textarea> pour le spécifié |
TextArea(IHtmlHelper, String, Object) |
Retourne un <élément textarea> pour le spécifié |
TextArea(IHtmlHelper, String, String) |
Retourne un <élément textarea> pour le spécifié |
TextArea(IHtmlHelper, String, String, Object) |
Retourne un <élément textarea> pour le spécifié |
TextArea(IHtmlHelper, String)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Retourne un <élément textarea> pour le spécifié expression
. Ajoute du contenu au corps de l’élément en fonction de la première valeur non trouvéenull
dans : l’entrée ModelState avec le nom complet, l’entrée avec le ViewData nom complet ou le expression
évalué par rapport Modelà .
Consultez Name(String) pour plus d’informations sur un « nom complet ».
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression);
public static Microsoft.AspNetCore.Html.IHtmlContent TextArea (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression);
static member TextArea : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextArea (htmlHelper As IHtmlHelper, expression As String) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- expression
- String
Nom de l’expression, relatif au modèle actuel.
Retours
Nouveau IHtmlContent contenant l’élément <textarea> .
Remarques
HtmlFieldPrefix Combine et expression
pour définir <l’attribut « name » de l’élément textarea>. Assainit expression
pour définir l’attribut « id » de l’élément.
S’applique à
TextArea(IHtmlHelper, String, Object)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Retourne un <élément textarea> pour le spécifié expression
. Ajoute du contenu au corps de l’élément en fonction de la première valeur non trouvéenull
dans : l’entrée ModelState avec le nom complet, l’entrée avec le ViewData nom complet ou le expression
évalué par rapport Modelà .
Consultez Name(String) pour plus d’informations sur un « nom complet ».
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent TextArea (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, object htmlAttributes);
static member TextArea : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextArea (htmlHelper As IHtmlHelper, expression As String, htmlAttributes As Object) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- expression
- String
Nom de l’expression, relatif au modèle actuel.
- htmlAttributes
- Object
Object qui contient les attributs HTML de l’élément . IDictionary<TKey,TValue> Une instance contenant les attributs HTML.
Retours
Nouveau IHtmlContent contenant l’élément <textarea> .
Remarques
HtmlFieldPrefix Combine et expression
pour définir <l’attribut « name » de l’élément textarea>. Assainit expression
pour définir l’attribut « id » de l’élément.
S’applique à
TextArea(IHtmlHelper, String, String)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Retourne un <élément textarea> pour le spécifié expression
. Ajoute du contenu au corps de l’élément en fonction de la première valeur non trouvéenull
dans : l’entrée ModelState avec le nom complet, le value
paramètre, l’entrée avec le ViewData nom complet ou le expression
évalué par rapport Modelà .
Consultez Name(String) pour plus d’informations sur un « nom complet ».
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::String ^ value);
public static Microsoft.AspNetCore.Html.IHtmlContent TextArea (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, string value);
static member TextArea : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextArea (htmlHelper As IHtmlHelper, expression As String, value As String) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- expression
- String
Nom de l’expression, relatif au modèle actuel.
- value
- String
Si ce n’est pasnull
le cas, valeur à inclure dans l’élément .
Retours
Nouveau IHtmlContent contenant l’élément <textarea> .
Remarques
HtmlFieldPrefix Combine et expression
pour définir <l’attribut « name » de l’élément textarea>. Assainit expression
pour définir l’attribut « id » de l’élément.
S’applique à
TextArea(IHtmlHelper, String, String, Object)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
Retourne un <élément textarea> pour le spécifié expression
. Ajoute du contenu au corps de l’élément en fonction de la première valeur non trouvéenull
dans : l’entrée ModelState avec le nom complet, le value
paramètre, l’entrée avec le ViewData nom complet ou le expression
évalué par rapport Modelà .
Consultez Name(String) pour plus d’informations sur un « nom complet ».
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::String ^ value, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent TextArea (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, string value, object htmlAttributes);
static member TextArea : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextArea (htmlHelper As IHtmlHelper, expression As String, value As String, htmlAttributes As Object) As IHtmlContent
Paramètres
- htmlHelper
- IHtmlHelper
La IHtmlHelper instance cette méthode s’étend.
- expression
- String
Nom de l’expression, relatif au modèle actuel.
- value
- String
Si ce n’est pasnull
le cas, valeur à inclure dans l’élément .
- htmlAttributes
- Object
Object qui contient les attributs HTML de l’élément . IDictionary<TKey,TValue> Une instance contenant les attributs HTML.
Retours
Nouveau IHtmlContent contenant l’élément <textarea> .
Remarques
HtmlFieldPrefix Combine et expression
pour définir <l’attribut « name » de l’élément textarea>. Assainit expression
pour définir l’attribut « id » de l’élément.