Class TelerikRangeSlider<TValue>
The class for the Telerik RangeSlider component.
Inherited Members
Namespace: Telerik.Blazor.Components
Assembly: Telerik.Blazor.dll
Syntax
public class TelerikRangeSlider<TValue> : TelerikSliderBase<TValue>, IDisposable
Type Parameters
TValue
|
Constructors
TelerikRangeSlider()
Declaration
public TelerikRangeSlider()
Properties
AriaLabel
Specifies the aria-label attribute of the component.
Declaration
public string AriaLabel { get; set; }
Property Value
System.String
|
EndValue
Specifies the end value of the range slider. Used with two-way binding.
Declaration
public TValue EndValue { get; set; }
Property Value
TValue
|
EndValueChanged
Specifies the callback that's called when the end value changes.
Declaration
public EventCallback<TValue> EndValueChanged { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<TValue>
|
EndValueExpression
Specifies the expression that identifies the bound end value.
Declaration
public Expression<Func<TValue>> EndValueExpression { get; set; }
Property Value
System.Linq.Expressions.Expression<System.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
public virtual EventCallback<RangeSliderChangeEventArgs> OnChange { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<RangeSliderChangeEventArgs>
|
StartValue
Specifies the start value of the range slider. Used with two-way binding.
Declaration
public TValue StartValue { get; set; }
Property Value
TValue
|
StartValueChanged
Specifies the callback that's called when the start value changes.
Declaration
public EventCallback<TValue> StartValueChanged { get; set; }
Property Value
Microsoft.AspNetCore.Components.EventCallback<TValue>
|
StartValueExpression
Specifies the expression that identifies the bound start value.
Declaration
public Expression<Func<TValue>> StartValueExpression { get; set; }
Property Value
System.Linq.Expressions.Expression<System.Func<TValue>>
|
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder
__builder
|
OnInitialized()
Declaration
protected override void OnInitialized()