ExtensionsFactory<ModelType>.ComboBoxFor<ValueType>(Expression<Func<ModelType, ValueType>>, Action<ComboBoxSettings>) Method
Creates a ComboBox.
Namespace: DevExpress.Web.Mvc.UI
Assembly: DevExpress.Web.Mvc5.v25.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
public ComboBoxExtension ComboBoxFor<ValueType>(
Expression<Func<ModelType, ValueType>> expression,
Action<ComboBoxSettings> method
)
Parameters
| Name | Type | Description |
|---|---|---|
| expression | Expression<Func<ModelType, ValueType>> | An expression that identifies the object that contains the properties to display. |
| method | Action<ComboBoxSettings> | A delegate method that accepts ComboBoxSettings as a parameter. |
Type Parameters
| Name |
|---|
| ValueType |
Returns
| Type | Description |
|---|---|
| ComboBoxExtension | A ComboBoxExtension object implementing the ComboBox functionality. |
See Also