HtmlHelper.TextArea(String, String, Int32, Int32, Object) 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.
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:
virtual Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(System::String ^ expression, System::String ^ value, int rows, int columns, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent TextArea (string expression, string value, int rows, int columns, object htmlAttributes);
abstract member TextArea : string * string * int * int * obj -> Microsoft.AspNetCore.Html.IHtmlContent
override this.TextArea : string * string * int * int * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function TextArea (expression As String, value As String, rows As Integer, columns As Integer, htmlAttributes As Object) As IHtmlContent
Paramètres
- expression
- String
Nom de l’expression, par rapport au modèle actuel.
- value
- String
Si ce n’estnull
pas le cas, valeur à inclure dans l’élément .
- rows
- Int32
Nombre de lignes dans la zone de texte.
- columns
- Int32
Nombre de colonnes dans la zone de texte.
- 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> .