| AdditionalAttributes |
Dictionary<string, object>? |
null |
|
Gets or sets additional attributes that will be applied to the component. |
1.10.6 |
| Class |
string? |
null |
|
Gets or sets the CSS class name(s) to apply to the component. |
1.10.6 |
| Disabled |
bool |
False |
|
Gets or sets whether the range input is disabled. When true, users cannot change its value. |
1.10.6 |
| Id |
string? |
null |
|
Gets or sets the ID. If not set, a unique ID will be generated. |
1.10.6 |
| Max |
object? |
null |
|
Gets or sets the maximum value selectable with the range input. |
1.10.6 |
| Min |
object? |
null |
|
Gets or sets the minimum value selectable with the range input. |
1.10.6 |
| Step |
double |
1 |
|
Gets or sets the increment between selectable range values. |
1.10.6 |
| Style |
string? |
null |
|
Gets or sets the CSS style string that defines the inline styles for the component. |
1.10.6 |
| TickMarks |
IEnumerable<TickMark> |
null |
|
Gets or sets tick marks displayed along the range input. |
1.10.6 |
| Value |
object? |
null |
|
Gets or sets the current value bound to the range input. |
1.10.6 |
| ValueExpression |
Expression<Func<object?>> |
null |
|
Gets or sets the expression that identifies the bound value for validation and EditContext notifications. |
1.10.6 |