Class GridRangeMovedEventArgs
Provides data about the RowsMoved and
Inherited Members
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public sealed class GridRangeMovedEventArgs : SyncfusionRoutedEventArgs
Remarks
GridRangeMovedEventArgs is a custom event argument class used by the RowsMoved and ColumnsMoved events.
This event is raised by the model to notify all associated views that it has rearranged the specified rows or columns in its data store and all associated views should redraw affected display contents.
The
Constructors
GridRangeMovedEventArgs(Int32, Int32, Int32)
Constructs a GridRangeMovedEventArgs.
Declaration
public GridRangeMovedEventArgs(int removeAt, int count, int insertAt)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | removeAt | |
System.Int32 | count | |
System.Int32 | insertAt |
Properties
Count
The index of the last row or column that was removed.
Declaration
[TraceProperty(true)]
public int Count { get; }
Property Value
Type |
---|
System.Int32 |
InsertAt
The row or column index where the cells should be inserted before.
Declaration
[TraceProperty(true)]
public int InsertAt { get; }
Property Value
Type |
---|
System.Int32 |
RemoveAt
The index of the first row or column that was removed.
Declaration
[TraceProperty(true)]
public int RemoveAt { get; }
Property Value
Type |
---|
System.Int32 |