ClassTelerikRangeSlider<TValue>
The class for the Telerik RangeSlider component.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Type Parameters:
TValue
Syntax:
public class TelerikRangeSlider<TValue> : TelerikSliderBase<TValue>, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikSliderBase<TValue>TelerikRangeSlider<TValue>
Implements:
Inherited Members
Constructors
TelerikRangeSlider()
Declaration
public TelerikRangeSlider()
Properties
AriaLabel
Specifies the aria-label attribute of the component.
Declaration
[Parameter]
public string AriaLabel { get; set; }
Property Value
EndValue
Specifies the end value of the range slider. Used with two-way binding.
Declaration
[Parameter]
public TValue EndValue { get; set; }
Property Value
TValue
EndValueChanged
Specifies the callback that's called when the end value changes.
Declaration
[Parameter]
public EventCallback<TValue> EndValueChanged { get; set; }
Property Value
EventCallback<TValue>
EndValueExpression
Specifies the expression that identifies the bound end value.
Declaration
[Parameter]
public Expression<Func<TValue>> EndValueExpression { get; set; }
Property Value
Expression<Func<TValue>>
OnChange
Specifies the callback that's called when the current values are committed (confirmed) by the user - OnDragEnd and OnClick of slider track.
Declaration
[Parameter]
public virtual EventCallback<RangeSliderChangeEventArgs> OnChange { get; set; }
Property Value
StartValue
Specifies the start value of the range slider. Used with two-way binding.
Declaration
[Parameter]
public TValue StartValue { get; set; }
Property Value
TValue
StartValueChanged
Specifies the callback that's called when the start value changes.
Declaration
[Parameter]
public EventCallback<TValue> StartValueChanged { get; set; }
Property Value
EventCallback<TValue>
StartValueExpression
Specifies the expression that identifies the bound start value.
Declaration
[Parameter]
public Expression<Func<TValue>> StartValueExpression { get; set; }
Property Value
Expression<Func<TValue>>
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
__builder
Overrides
OnInitialized()
Declaration
protected override void OnInitialized()
Overrides