Class RangeChangingEventArgs
The event arguments for a range-changing event which allows you to intercept the update of the values and apply custom logic and modify the values.
Inheritance
System.Object
RangeChangingEventArgs
Namespace: Telerik.Maui
Assembly: Telerik.Maui.Core.dll
Syntax
public class RangeChangingEventArgs : EventArgs
Properties
RangeEnd
Gets or sets the value that will be set for the end of the range.
Declaration
public double RangeEnd { get; set; }
Property Value
System.Double
|
RangeStart
Gets or sets the value that will be set for the start of the range.
Declaration
public double RangeStart { get; set; }
Property Value
System.Double
|