Class ValueChangingEventArgs
Provides event data for the ValueChanging event.
Inheritance
System.Object
ValueChangingEventArgs
Namespace: Syncfusion.UI.Xaml.Gauges
Assembly: Syncfusion.Gauge.WinUI.dll
Syntax
public class ValueChangingEventArgs : EventArgs
Constructors
ValueChangingEventArgs()
Declaration
public ValueChangingEventArgs()
Properties
Cancel
Gets or sets a value that indicates whether to restrict the updating pointer value and cancel the dragging.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if event is cancelled; otherwise, false.The default value is false. |
NewValue
Gets the new pointer value which is updating the pointer value.
Declaration
public double NewValue { get; }
Property Value
Type | Description |
---|---|
System.Double | The new value. |
OldValue
Gets the old value of pointer which is updated by pointer dragging.
Declaration
public double OldValue { get; }
Property Value
Type | Description |
---|---|
System.Double | The old value. |