layout: default title: SliderTickClickEvent parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Widgets
SliderTickClickEvent Class
Event arguments for the OnTickClick event.
public class SliderTickClickEvent :
System.IEquatable<dymaptic.GeoBlazor.Core.Components.Widgets.SliderTickClickEvent>
Inheritance System.Object 🡒 SliderTickClickEvent
Implements System.IEquatable<SliderTickClickEvent>
Constructors
SliderTickClickEvent(double, int, int) Constructor
Event arguments for the OnTickClick event.
public SliderTickClickEvent(double Value, int ConfigIndex, int GroupIndex);
Parameters
Value
System.Double
The approximate value that the tick represents on the slider track.
ConfigIndex
System.Int32
The 0-based index of the associated configuration provided in tickConfigs.
GroupIndex
System.Int32
The 0-based index of the tick and/or group (associated label) relative to other ticks in the same configuration.
Properties
SliderTickClickEvent.ConfigIndex Property
The 0-based index of the associated configuration provided in tickConfigs.
public int ConfigIndex { get; set; }
Property Value
SliderTickClickEvent.GroupIndex Property
The 0-based index of the tick and/or group (associated label) relative to other ticks in the same configuration.
public int GroupIndex { get; set; }
Property Value
SliderTickClickEvent.Value Property
The approximate value that the tick represents on the slider track.
public double Value { get; set; }