RangeSelectorBuilder.Value(IEnumerable<String>) Method
In This Article
The selected range (initial or current). Equals the entire scale when not set. Mirrors the client-side value option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public RangeSelectorBuilder Value(
IEnumerable<string> value
)
#Parameters
Name | Type | Description |
---|---|---|
value | IEnumerable<String> | The option value. |
#Returns
Type | Description |
---|---|
Range |
A reference to this instance after the method is called. |
#Remarks
Use the following notation to set the option’s value:
@(Html.DevExtreme().RangeSelector()
.Value(Model.MyValue)
)
See Also