Class SliderTickRenderedEventArgs
It is used to denote the ticks rendered Event arguments.
Inheritance
System.Object
SliderTickRenderedEventArgs
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
public class SliderTickRenderedEventArgs : Object
Constructors
SliderTickRenderedEventArgs()
Declaration
public SliderTickRenderedEventArgs()
Properties
HtmlAttributes
It is used to customize ticks parent element.
Declaration
public Dictionary<string, object> HtmlAttributes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.Object> | A dictionary of HTML attributes that can be used to customize the appearance or behavior of the tick parent element. |
TickElementsRef
It returns the collection of tick elements as a reference.
Declaration
public List<ElementReference> TickElementsRef { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Microsoft.AspNetCore.Components.ElementReference> | A list of ElementReference objects representing the tick elements. |
TicksContainerRef
It returns the container of the ticks element as a reference.
Declaration
public ElementReference TicksContainerRef { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.ElementReference | An ElementReference object representing the container element for the ticks. |