Class GridRowRangeEventArgs
Provides event data for the RowsDeleting event.
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridRowRangeEventArgs : SyncfusionCancelEventArgs
Constructors
GridRowRangeEventArgs(Int32, Int32)
Initializes a new GridRowEventArgs object.
Declaration
public GridRowRangeEventArgs(int from, int last)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | from | The first index. |
| System.Int32 | last | The last index. |
Properties
From
Gets the first index.
Declaration
[TraceProperty(true)]
public int From { get; }
Property Value
| Type |
|---|
| System.Int32 |
To
Gets the row index.
Declaration
[TraceProperty(true)]
public int To { get; }
Property Value
| Type |
|---|
| System.Int32 |