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> |
TickElements
It returns the collection of tick elements.
Declaration
public List<DOM> TickElements { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DOM> |
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> |
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 |
TicksWrapper
It returns the container of the ticks element.
Declaration
public DOM TicksWrapper { get; set; }
Property Value
Type | Description |
---|---|
DOM |