Class RangeChangedEventArgs
Inheritance
System.Object
System.EventArgs
RangeChangedEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.WinForms.GridCommon.ScrollAxis
Assembly: Syncfusion.GridCommon.WinForms.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. |