layout: default title: SliderMaxChangeEvent parent: Core Classes —
dymaptic.GeoBlazor.Core
dymaptic.GeoBlazor.Core.Components.Widgets
SliderMaxChangeEvent Class
Event arguments for the OnMaxChange event.
public class SliderMaxChangeEvent :
System.IEquatable<dymaptic.GeoBlazor.Core.Components.Widgets.SliderMaxChangeEvent>
Inheritance System.Object 🡒 SliderMaxChangeEvent
Implements System.IEquatable<SliderMaxChangeEvent>
Constructors
SliderMaxChangeEvent(double, double) Constructor
Event arguments for the OnMaxChange event.
public SliderMaxChangeEvent(double OldValue, double Value);
Parameters
OldValue
System.Double
The former max value (or bound) of the slider.
Value
System.Double
The max value (or bound) of the slider when the event is emitted.
Properties
SliderMaxChangeEvent.OldValue Property
The former max value (or bound) of the slider.
public double OldValue { get; set; }
Property Value
SliderMaxChangeEvent.Value Property
The max value (or bound) of the slider when the event is emitted.
public double Value { get; set; }