Class RangeChangedEventArgs
Provides data for the LineSizeChanged event.
Inheritance
System.Object
    RangeChangedEventArgs
  Namespace: Syncfusion.GridCommon.ScrollAxis
Assembly: Syncfusion.GridCommon.Portable.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 | The start index.  | 
      
| System.Int32 | to | The end index.  | 
      
RangeChangedEventArgs(Int32, Int32, Double, Double)
Initializes a new instance of the RangeChangedEventArgs class.
Declaration
public RangeChangedEventArgs(int from, int to, double oldSize, double newSize)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | from | The start index.  | 
      
| System.Int32 | to | The end index.  | 
      
| System.Double | oldSize | The old size.  | 
      
| System.Double | newSize | The new size.  | 
      
Properties
From
Gets the start index.
Declaration
public int From { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | The start index.  | 
      
NewSize
Gets the new size.
Declaration
public double NewSize { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Double | The new size.  | 
      
OldSize
Gets the old size.
Declaration
public double OldSize { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Double | The old size.  | 
      
To
Gets the end index.
Declaration
public int To { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | The end index.  |