TextAreaExtensions.TextAreaFor Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>) |
Restituisce un elemento textarea HTML per ogni proprietà nell'oggetto rappresentato dall'espressione specificata. |
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, IDictionary<String,Object>) |
Restituisce un elemento HTML textarea per ogni proprietà nell'oggetto rappresentato dall'espressione specificata, utilizzando gli attributi HTML specificati. |
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, Object) |
Restituisce un elemento HTML textarea per ogni proprietà nell'oggetto rappresentato dall'espressione specificata, utilizzando gli attributi HTML specificati. |
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, Int32, Int32, IDictionary<String,Object>) |
Restituisce un elemento textarea HTML per ogni proprietà dell'oggetto rappresentato dall'espressione specificata utilizzando gli attributi HTML specificati e il numero di righe e colonne. |
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, Int32, Int32, Object) |
Restituisce un elemento textarea HTML per ogni proprietà dell'oggetto rappresentato dall'espressione specificata utilizzando gli attributi HTML specificati e il numero di righe e colonne. |
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>)
Restituisce un elemento textarea HTML per ogni proprietà nell'oggetto rappresentato dall'espressione specificata.
public static System.Web.Mvc.MvcHtmlString TextAreaFor<TModel,TProperty> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TProperty>> expression);
static member TextAreaFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Property>> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextAreaFor(Of TModel, TProperty) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TProperty))) As MvcHtmlString
Parametri di tipo
- TModel
Tipo del modello.
- TProperty
Tipo della proprietà.
Parametri
- htmlHelper
- HtmlHelper<TModel>
Istanza dell'helper HTML estesa da questo metodo.
- expression
- Expression<Func<TModel,TProperty>>
Espressione che identifica l'oggetto contenente le proprietà di cui eseguire il rendering.
Restituisce
Elemento HTML textarea per ogni proprietà nell'oggetto rappresentato dall'espressione.
Eccezioni
Il parametro expression
è null.
Si applica a
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, IDictionary<String,Object>)
Restituisce un elemento HTML textarea per ogni proprietà nell'oggetto rappresentato dall'espressione specificata, utilizzando gli attributi HTML specificati.
public static System.Web.Mvc.MvcHtmlString TextAreaFor<TModel,TProperty> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TProperty>> expression, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member TextAreaFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Property>> * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextAreaFor(Of TModel, TProperty) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TProperty)), htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString
Parametri di tipo
- TModel
Tipo del modello.
- TProperty
Tipo della proprietà.
Parametri
- htmlHelper
- HtmlHelper<TModel>
Istanza dell'helper HTML estesa da questo metodo.
- expression
- Expression<Func<TModel,TProperty>>
Espressione che identifica l'oggetto contenente le proprietà di cui eseguire il rendering.
- htmlAttributes
- IDictionary<String,Object>
Dizionario contenente gli attributi HTML da impostare per l'elemento.
Restituisce
Elemento HTML textarea per ogni proprietà nell'oggetto rappresentato dall'espressione.
Eccezioni
Il parametro expression
è null.
Si applica a
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, Object)
Restituisce un elemento HTML textarea per ogni proprietà nell'oggetto rappresentato dall'espressione specificata, utilizzando gli attributi HTML specificati.
public static System.Web.Mvc.MvcHtmlString TextAreaFor<TModel,TProperty> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TProperty>> expression, object htmlAttributes);
static member TextAreaFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Property>> * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextAreaFor(Of TModel, TProperty) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TProperty)), htmlAttributes As Object) As MvcHtmlString
Parametri di tipo
- TModel
Tipo del modello.
- TProperty
Tipo della proprietà.
Parametri
- htmlHelper
- HtmlHelper<TModel>
Istanza dell'helper HTML estesa da questo metodo.
- expression
- Expression<Func<TModel,TProperty>>
Espressione che identifica l'oggetto contenente le proprietà di cui eseguire il rendering.
- htmlAttributes
- Object
Dizionario contenente gli attributi HTML da impostare per l'elemento.
Restituisce
Elemento HTML textarea per ogni proprietà nell'oggetto rappresentato dall'espressione.
Eccezioni
Il parametro expression
è null.
Si applica a
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, Int32, Int32, IDictionary<String,Object>)
Restituisce un elemento textarea HTML per ogni proprietà dell'oggetto rappresentato dall'espressione specificata utilizzando gli attributi HTML specificati e il numero di righe e colonne.
public static System.Web.Mvc.MvcHtmlString TextAreaFor<TModel,TProperty> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TProperty>> expression, int rows, int columns, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member TextAreaFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Property>> * int * int * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextAreaFor(Of TModel, TProperty) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TProperty)), rows As Integer, columns As Integer, htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString
Parametri di tipo
- TModel
Tipo del modello.
- TProperty
Tipo della proprietà.
Parametri
- htmlHelper
- HtmlHelper<TModel>
Istanza dell'helper HTML estesa da questo metodo.
- expression
- Expression<Func<TModel,TProperty>>
Espressione che identifica l'oggetto contenente le proprietà di cui eseguire il rendering.
- rows
- Int32
Numero di righe.
- columns
- Int32
Numero di colonne.
- htmlAttributes
- IDictionary<String,Object>
Dizionario contenente gli attributi HTML da impostare per l'elemento.
Restituisce
Elemento HTML textarea per ogni proprietà nell'oggetto rappresentato dall'espressione.
Eccezioni
Il parametro expression
è null.
Si applica a
TextAreaFor<TModel,TProperty>(HtmlHelper<TModel>, Expression<Func<TModel,TProperty>>, Int32, Int32, Object)
Restituisce un elemento textarea HTML per ogni proprietà dell'oggetto rappresentato dall'espressione specificata utilizzando gli attributi HTML specificati e il numero di righe e colonne.
public static System.Web.Mvc.MvcHtmlString TextAreaFor<TModel,TProperty> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,TProperty>> expression, int rows, int columns, object htmlAttributes);
static member TextAreaFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, 'Property>> * int * int * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function TextAreaFor(Of TModel, TProperty) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, TProperty)), rows As Integer, columns As Integer, htmlAttributes As Object) As MvcHtmlString
Parametri di tipo
- TModel
Tipo del modello.
- TProperty
Tipo della proprietà.
Parametri
- htmlHelper
- HtmlHelper<TModel>
Istanza dell'helper HTML estesa da questo metodo.
- expression
- Expression<Func<TModel,TProperty>>
Espressione che identifica l'oggetto contenente le proprietà di cui eseguire il rendering.
- rows
- Int32
Numero di righe.
- columns
- Int32
Numero di colonne.
- htmlAttributes
- Object
Dizionario contenente gli attributi HTML da impostare per l'elemento.
Restituisce
Elemento HTML textarea per ogni proprietà nell'oggetto rappresentato dall'espressione.
Eccezioni
Il parametro expression
è null.