Class TelerikSliderBase<TValue>
Inherited Members
Namespace: Telerik.Blazor.Components.Common
Assembly: Telerik.Blazor.dll
Syntax
public abstract class TelerikSliderBase<TValue> : BaseComponent, IDisposable
Type Parameters
TValue
|
Constructors
TelerikSliderBase()
Declaration
protected TelerikSliderBase()
Properties
AriaDescribedBy
Defines the aria-describedby attribute for the component.
Declaration
public string AriaDescribedBy { get; set; }
Property Value
System.String
|
AriaLabelledBy
Describe the aria-labelledby attribute for the component.
Declaration
public string AriaLabelledBy { get; set; }
Property Value
System.String
|
CascadedEditContext
Declaration
public EditContext CascadedEditContext { get; set; }
Property Value
Microsoft.AspNetCore.Components.Forms.EditContext
|
Decimals
Specifies the number precision applied when typing. By default the decimals count is set from the specified Culture.
Declaration
public int Decimals { get; set; }
Property Value
System.Int32
|
Enabled
Specifies whether the Component is enabled.
Declaration
public bool Enabled { get; set; }
Property Value
System.Boolean
|
LabelTemplate
Defines the label template of the slider.
Declaration
public RenderFragment<TValue> LabelTemplate { get; set; }
Property Value
Microsoft.AspNetCore.Components.RenderFragment<TValue>
|
LargeStep
Defines the step that will have a large tick and will have a label.
Declaration
public TValue LargeStep { get; set; }
Property Value
TValue
|
Max
Defines the maximum value of the Slider.
Declaration
public TValue Max { get; set; }
Property Value
TValue
|
Min
Defines the minimum value of the Slider.
Declaration
public TValue Min { get; set; }
Property Value
TValue
|
Orientation
Defines the orientation of the Slider. Default value Horizontal.
Declaration
public SliderOrientation Orientation { get; set; }
Property Value
SliderOrientation
|
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
public TValue SmallStep { get; set; }
Property Value
TValue
|
TabIndex
The TabIndex of the component.
Declaration
public int TabIndex { get; set; }
Property Value
System.Int32
|
TickPosition
Defines the position of the ticks around the Slider track.
Declaration
public SliderTickPosition TickPosition { get; set; }
Property Value
SliderTickPosition
|
Width
Defines the width of the component.
Declaration
public string Width { get; set; }
Property Value
System.String
|
Methods
Dispose()
OnAfterRenderAsync(Boolean)
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
System.Boolean
firstRender
|
Returns
System.Threading.Tasks.Task
|
Overrides
OnParametersSetAsync()
Declaration
protected override Task OnParametersSetAsync()
Returns
System.Threading.Tasks.Task
|