Class SliderTickEventArgs
It is used to denote the TicksRender event arguments.
Inheritance
System.Object
SliderTickEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class SliderTickEventArgs : Object
Constructors
SliderTickEventArgs()
Declaration
public SliderTickEventArgs()
Properties
HtmlAttributes
It is used to customize tick elements.
Declaration
public Dictionary<string, object> HtmlAttributes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.Object> |
Text
It is used to get the label text of the tick.
Declaration
public string Text { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TickElementRef
It is used to get the current tick element reference.
Declaration
public ElementReference TickElementRef { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.ElementReference |
Value
It is used to get the value of the tick.
Declaration
public double Value { get; set; }
Property Value
Type | Description |
---|---|
System.Double |