Definition
Namespace:Telerik.Blazor.Components.Common
Assembly:Telerik.Blazor.dll
Type Parameters:
TValue
Syntax:
public abstract class TelerikSliderBase<TValue> : BaseComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseBaseComponentTelerikSliderBase<TValue>
Derived Classes:
Implements:
Inherited Members
Constructors
protected TelerikSliderBase()
Methods
public override void Dispose()
Overrides:
Implements:
protected override void OnInitialized()
Overrides:
Properties
[Accessibility] Defines the aria-describedby attribute for the component.
[Parameter]
public string AriaDescribedBy { get; set; }
[Accessibility] Describe the aria-labelledby attribute for the component.
[Parameter]
public string AriaLabelledBy { get; set; }
[CascadingParameter]
public EditContext CascadedEditContext { get; set; }
Specifies the number precision applied when typing. By default the decimals count is set from the specified Culture.
[Parameter]
public int Decimals { get; set; }
Specifies whether the Component is enabled.
[Parameter]
public bool Enabled { get; set; }
LabelTemplate
RenderFragment<TValue>
Defines the label template of the slider.
[Parameter]
public RenderFragment<TValue> LabelTemplate { get; set; }
LargeStep
TValue
Defines the step that will have a large tick and will have a label.
[Parameter]
public TValue LargeStep { get; set; }
Max
TValue
Defines the maximum value of the Slider.
[Parameter]
public TValue Max { get; set; }
Min
TValue
Defines the minimum value of the Slider.
[Parameter]
public TValue Min { get; set; }
Defines the orientation of the Slider. Default value Horizontal.
[Parameter]
public SliderOrientation Orientation { get; set; }
SmallStep
TValue
Defines the small step value of the Slider. Small ticks count is calculated based on the small step. Accepts positive values only. Default value is 1.
[Parameter]
public TValue SmallStep { get; set; }
[Accessibility] The TabIndex of the component.
[Parameter]
public int TabIndex { get; set; }
Defines the position of the ticks around the Slider track.
[Parameter]
public SliderTickPosition TickPosition { get; set; }