ClassTelerikSliderBase<TValue>
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
TelerikSliderBase()
Declaration
protected TelerikSliderBase()
Properties
AriaDescribedBy
Defines the aria-describedby attribute for the component.
Declaration
[Parameter]
public string AriaDescribedBy { get; set; }
Property Value
AriaLabelledBy
Describe the aria-labelledby attribute for the component.
Declaration
[Parameter]
public string AriaLabelledBy { get; set; }
Property Value
CascadedEditContext
Declaration
[CascadingParameter]
public EditContext CascadedEditContext { get; set; }
Property Value
Decimals
Specifies the number precision applied when typing. By default the decimals count is set from the specified Culture.
Enabled
Specifies whether the Component is enabled.
LabelTemplate
Defines the label template of the slider.
Declaration
[Parameter]
public RenderFragment<TValue> LabelTemplate { get; set; }
Property Value
RenderFragment<TValue>
LargeStep
Defines the step that will have a large tick and will have a label.
Declaration
[Parameter]
public TValue LargeStep { get; set; }
Property Value
TValue
Max
Defines the maximum value of the Slider.
Declaration
[Parameter]
public TValue Max { get; set; }
Property Value
TValue
Min
Defines the minimum value of the Slider.
Declaration
[Parameter]
public TValue Min { get; set; }
Property Value
TValue
Orientation
Defines the orientation of the Slider. Default value Horizontal.
Declaration
[Parameter]
public SliderOrientation Orientation { get; set; }
Property Value
SmallStep
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.
Declaration
[Parameter]
public TValue SmallStep { get; set; }
Property Value
TValue
TabIndex
The TabIndex of the component.
TickPosition
Defines the position of the ticks around the Slider track.
Declaration
[Parameter]
public SliderTickPosition TickPosition { get; set; }
Property Value
Methods
Dispose()
Declaration
public override void Dispose()
Overrides
Implements
OnInitialized()
Declaration
protected override void OnInitialized()
Overrides