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