Class SliderLimits
This class is used to set limit bar to slider component.
Inherited Members
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class SliderLimits : SfBaseComponent
Constructors
SliderLimits()
Declaration
public SliderLimits()
Properties
Enabled
It is used to enable the limit in the slider.
Declaration
public bool Enabled { get; set; }
Property Value
Type |
---|
System.Boolean |
EndHandleFixed
It is used to lock the second handle.
Declaration
public bool EndHandleFixed { get; set; }
Property Value
Type |
---|
System.Boolean |
MaxEnd
It is used to set the maximum end limit value.
Declaration
public Nullable<double> MaxEnd { get; set; }
Property Value
Type |
---|
System.Nullable<System.Double> |
MaxStart
It is used to set the maximum start limit value.
Declaration
public Nullable<double> MaxStart { get; set; }
Property Value
Type |
---|
System.Nullable<System.Double> |
MinEnd
It is used to set the minimum end limit value.
Declaration
public Nullable<double> MinEnd { get; set; }
Property Value
Type |
---|
System.Nullable<System.Double> |
MinStart
It is used to set the minimum start limit value.
Declaration
public Nullable<double> MinStart { get; set; }
Property Value
Type |
---|
System.Nullable<System.Double> |
StartHandleFixed
It is used to lock the first handle.
Declaration
public bool StartHandleFixed { get; set; }
Property Value
Type |
---|
System.Boolean |
Methods
BuildRenderTree(RenderTreeBuilder)
Declaration
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters
Type | Name | Description |
---|---|---|
Microsoft.AspNetCore.Components.Rendering.RenderTreeBuilder | __builder |
OnAfterRenderAsync(Boolean)
Method invoked after each time the component has been rendered.
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | firstRender | Set to true for the first time component rendering; otherwise gets false. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | "Task". |
Overrides
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | "Task". |
Overrides
OnParametersSetAsync()
Method invoked when any changes in component state occurs.
Declaration
protected override Task OnParametersSetAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | "Task". |