Class RangeChangedEventArgs
Inheritance
System.Object
RangeChangedEventArgs
Namespace: Syncfusion.UI.Xaml.Grids.ScrollAxis
Assembly: Syncfusion.GridCommon.WinUI.dll
Syntax
public sealed class RangeChangedEventArgs : EventArgs
Constructors
RangeChangedEventArgs(Int32, Int32)
Initializes a new instance of the RangeChangedEventArgs class.
Declaration
public RangeChangedEventArgs(int from, int to)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | from | From. |
System.Int32 | to | To. |
RangeChangedEventArgs(Int32, Int32, Double, Double)
Declaration
public RangeChangedEventArgs(int from, int to, double oldSize, double newSize)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | from | |
System.Int32 | to | |
System.Double | oldSize | |
System.Double | newSize |
Properties
From
Gets from.
Declaration
public int From { get; }
Property Value
Type | Description |
---|---|
System.Int32 | From. |
NewSize
Declaration
public double NewSize { get; }
Property Value
Type |
---|
System.Double |
OldSize
Declaration
public double OldSize { get; }
Property Value
Type |
---|
System.Double |
To
Gets to.
Declaration
public int To { get; }
Property Value
Type | Description |
---|---|
System.Int32 | To. |