Skip to main content
A newer version of this page is available. .

WidgetFactory<TModel>.SwitchFor<TProperty>(Expression<Func<TModel, TProperty>>) Method

Creates a Switch control for an expression.

Namespace: DevExtreme.AspNet.Mvc.Factories

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public SwitchBuilder SwitchFor<TProperty>(
    Expression<Func<TModel, TProperty>> expression
)

Parameters

Name Type Description
expression Expression<Func<TModel, TProperty>>

A strongly-typed lambda expression. Returns a model property that supplies data to a control.

Type Parameters

Name Description
TProperty

The type of the expression result.

Returns

Type Description
SwitchBuilder

An instance of SwitchBuilder.

Remarks

This method creates a SwitchBuilder class instance based on a data model property. Use members of this class to specify control options.

@model SampleModel

@(Html.DevExtreme().SwitchFor(m => m.ModelProperty) // create a Switch
    // call methods to specify additional control options
)

Refer to Strongly-Typed Helpers for more information.

See Also