IHtmlHelper.Label(String, String, 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 label> pour le spécifié expression
.
public:
Microsoft::AspNetCore::Html::IHtmlContent ^ Label(System::String ^ expression, System::String ^ labelText, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent Label (string expression, string labelText, object htmlAttributes);
abstract member Label : string * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function Label (expression As String, labelText As String, htmlAttributes As Object) As IHtmlContent
Paramètres
- expression
- String
Nom de l’expression, par rapport au modèle actuel.
- labelText
- String
Texte interne de 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 <label> .