Class LinesRemovedEventArgs
Provides data for the LinesRemoved event.
Inheritance
System.Object
    LinesRemovedEventArgs
  Namespace: Syncfusion.GridCommon.ScrollAxis
Assembly: Syncfusion.GridCommon.Portable.dll
Syntax
public sealed class LinesRemovedEventArgs : EventArgs
  Constructors
LinesRemovedEventArgs(Int32, Int32)
Initializes a new instance of the LinesRemovedEventArgs class.
Declaration
public LinesRemovedEventArgs(int removeAt, int count)
  Parameters
| Type | Name | Description | 
|---|---|---|
| System.Int32 | removeAt | The index to remove.  | 
      
| System.Int32 | count | The count of the lines.  | 
      
Properties
Count
Gets the count of items to be removed.
Declaration
public int Count { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | The count of items to be removed.  | 
      
RemoveAt
Gets the index to remove.
Declaration
public int RemoveAt { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Int32 | the index to remove.  |