SelectExtensions.DropDownListFor Method

 

Returns an HTML select element for each property in the object that is represented by the specified expression.

Namespace:   System.Web.Mvc.Html
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticDropDownListFor(Of TModel, TProperty)(HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem))

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items.

System_CAPS_pubmethodSystem_CAPS_staticDropDownListFor(Of TModel, TProperty)(HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), IDictionary(Of String, Object))

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes.

System_CAPS_pubmethodSystem_CAPS_staticDropDownListFor(Of TModel, TProperty)(HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), Object)

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes.

System_CAPS_pubmethodSystem_CAPS_staticDropDownListFor(Of TModel, TProperty)(HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), String)

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and option label.

System_CAPS_pubmethodSystem_CAPS_staticDropDownListFor(Of TModel, TProperty)(HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), String, IDictionary(Of String, Object))

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items, option label, and HTML attributes.

System_CAPS_pubmethodSystem_CAPS_staticDropDownListFor(Of TModel, TProperty)(HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), String, Object)

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items, option label, and HTML attributes.

Return to top

SelectExtensions.DropDownListFor(Of TModel, TProperty) Method (HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem))

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items.

<ExtensionAttribute>
Public Shared Function DropDownListFor(Of TModel, TProperty) (
	htmlHelper As HtmlHelper(Of TModel),
	expression As Expression(Of Func(Of TModel, TProperty)),
	selectList As IEnumerable(Of SelectListItem)
) As MvcHtmlString

Parameters

htmlHelper
Type: System.Web.Mvc.HtmlHelper(Of TModel)

The HTML helper instance that this method extends.

expression
Type: System.Linq.Expressions.Expression(Of Func(Of TModelTProperty))

An expression that identifies the object that contains the properties to display.

selectList
Type: System.Collections.Generic.IEnumerable(Of SelectListItem)

A collection of SelectListItem objects that are used to populate the drop-down list.

Return Value

Type: System.Web.Mvc.MvcHtmlString

An HTML select element for each property in the object that is represented by the expression.

Type Parameters

TModel

The type of the model.

TProperty

The type of the value.

Exception Condition
ArgumentNullException

The expression parameter is null.

Return to top

SelectExtensions.DropDownListFor(Of TModel, TProperty) Method (HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), IDictionary(Of String, Object))

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes.

<ExtensionAttribute>
Public Shared Function DropDownListFor(Of TModel, TProperty) (
	htmlHelper As HtmlHelper(Of TModel),
	expression As Expression(Of Func(Of TModel, TProperty)),
	selectList As IEnumerable(Of SelectListItem),
	htmlAttributes As IDictionary(Of StringObject)
) As MvcHtmlString

Parameters

htmlHelper
Type: System.Web.Mvc.HtmlHelper(Of TModel)

The HTML helper instance that this method extends.

expression
Type: System.Linq.Expressions.Expression(Of Func(Of TModelTProperty))

An expression that identifies the object that contains the properties to display.

selectList
Type: System.Collections.Generic.IEnumerable(Of SelectListItem)

A collection of SelectListItem objects that are used to populate the drop-down list.

htmlAttributes
Type: System.Collections.Generic.IDictionary(Of StringObject)

An object that contains the HTML attributes to set for the element.

Return Value

Type: System.Web.Mvc.MvcHtmlString

An HTML select element for each property in the object that is represented by the expression.

Type Parameters

TModel

The type of the model.

TProperty

The type of the value.

Exception Condition
ArgumentNullException

The expression parameter is null.

Return to top

SelectExtensions.DropDownListFor(Of TModel, TProperty) Method (HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), Object)

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and HTML attributes.

<ExtensionAttribute>
Public Shared Function DropDownListFor(Of TModel, TProperty) (
	htmlHelper As HtmlHelper(Of TModel),
	expression As Expression(Of Func(Of TModel, TProperty)),
	selectList As IEnumerable(Of SelectListItem),
	htmlAttributes As Object
) As MvcHtmlString

Parameters

htmlHelper
Type: System.Web.Mvc.HtmlHelper(Of TModel)

The HTML helper instance that this method extends.

expression
Type: System.Linq.Expressions.Expression(Of Func(Of TModelTProperty))

An expression that identifies the object that contains the properties to display.

selectList
Type: System.Collections.Generic.IEnumerable(Of SelectListItem)

A collection of SelectListItem objects that are used to populate the drop-down list.

htmlAttributes
Type: System.Object

An object that contains the HTML attributes to set for the element.

Return Value

Type: System.Web.Mvc.MvcHtmlString

An HTML select element for each property in the object that is represented by the expression.

Type Parameters

TModel

The type of the model.

TProperty

The type of the value.

Exception Condition
ArgumentNullException

The expression parameter is null.

Return to top

SelectExtensions.DropDownListFor(Of TModel, TProperty) Method (HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), String)

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items and option label.

<ExtensionAttribute>
Public Shared Function DropDownListFor(Of TModel, TProperty) (
	htmlHelper As HtmlHelper(Of TModel),
	expression As Expression(Of Func(Of TModel, TProperty)),
	selectList As IEnumerable(Of SelectListItem),
	optionLabel As String
) As MvcHtmlString

Parameters

htmlHelper
Type: System.Web.Mvc.HtmlHelper(Of TModel)

The HTML helper instance that this method extends.

expression
Type: System.Linq.Expressions.Expression(Of Func(Of TModelTProperty))

An expression that identifies the object that contains the properties to display.

selectList
Type: System.Collections.Generic.IEnumerable(Of SelectListItem)

A collection of SelectListItem objects that are used to populate the drop-down list.

optionLabel
Type: System.String

The text for a default empty item. This parameter can be null.

Return Value

Type: System.Web.Mvc.MvcHtmlString

An HTML select element for each property in the object that is represented by the expression.

Type Parameters

TModel

The type of the model.

TProperty

The type of the value.

Exception Condition
ArgumentNullException

The expression parameter is null.

Return to top

SelectExtensions.DropDownListFor(Of TModel, TProperty) Method (HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), String, IDictionary(Of String, Object))

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items, option label, and HTML attributes.

<ExtensionAttribute>
Public Shared Function DropDownListFor(Of TModel, TProperty) (
	htmlHelper As HtmlHelper(Of TModel),
	expression As Expression(Of Func(Of TModel, TProperty)),
	selectList As IEnumerable(Of SelectListItem),
	optionLabel As String,
	htmlAttributes As IDictionary(Of StringObject)
) As MvcHtmlString

Parameters

htmlHelper
Type: System.Web.Mvc.HtmlHelper(Of TModel)

The HTML helper instance that this method extends.

expression
Type: System.Linq.Expressions.Expression(Of Func(Of TModelTProperty))

An expression that identifies the object that contains the properties to display.

selectList
Type: System.Collections.Generic.IEnumerable(Of SelectListItem)

A collection of SelectListItem objects that are used to populate the drop-down list.

optionLabel
Type: System.String

The text for a default empty item. This parameter can be null.

htmlAttributes
Type: System.Collections.Generic.IDictionary(Of StringObject)

An object that contains the HTML attributes to set for the element.

Return Value

Type: System.Web.Mvc.MvcHtmlString

An HTML select element for each property in the object that is represented by the expression.

Type Parameters

TModel

The type of the model.

TProperty

The type of the value.

Exception Condition
ArgumentNullException

The expression parameter is null.

Return to top

SelectExtensions.DropDownListFor(Of TModel, TProperty) Method (HtmlHelper(Of TModel), Expression(Of Func(Of TModel, TProperty)), IEnumerable(Of SelectListItem), String, Object)

Returns an HTML select element for each property in the object that is represented by the specified expression using the specified list items, option label, and HTML attributes.

<ExtensionAttribute>
Public Shared Function DropDownListFor(Of TModel, TProperty) (
	htmlHelper As HtmlHelper(Of TModel),
	expression As Expression(Of Func(Of TModel, TProperty)),
	selectList As IEnumerable(Of SelectListItem),
	optionLabel As String,
	htmlAttributes As Object
) As MvcHtmlString

Parameters

htmlHelper
Type: System.Web.Mvc.HtmlHelper(Of TModel)

The HTML helper instance that this method extends.

expression
Type: System.Linq.Expressions.Expression(Of Func(Of TModelTProperty))

An expression that identifies the object that contains the properties to display.

selectList
Type: System.Collections.Generic.IEnumerable(Of SelectListItem)

A collection of SelectListItem objects that are used to populate the drop-down list.

optionLabel
Type: System.String

The text for a default empty item. This parameter can be null.

htmlAttributes
Type: System.Object

An object that contains the HTML attributes to set for the element.

Return Value

Type: System.Web.Mvc.MvcHtmlString

An HTML select element for each property in the object that is represented by the expression.

Type Parameters

TModel

The type of the model.

TProperty

The type of the value.

Exception Condition
ArgumentNullException

The expression parameter is null.

Return to top
Show: