Class GridRangeRemovedEventArgs
Provides data about the RowsRemoved and ColumnsRemoved events.
Inherited Members
Namespace: Syncfusion.Windows.Controls.Grid
Assembly: Syncfusion.Grid.Wpf.dll
Syntax
public sealed class GridRangeRemovedEventArgs : SyncfusionRoutedEventArgs
Remarks
GridRangeRemovedEventArgs is a custom event argument class used by the RowsRemoved and ColumnsRemoved 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
GridRangeRemovedEventArgs(Int32, Int32)
Constructs a GridRangeRemovedEventArgs.
Declaration
public GridRangeRemovedEventArgs(int removeAt, int count)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | removeAt | |
System.Int32 | count |
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 |
RemoveAt
The index of the first row or column that was removed.
Declaration
[TraceProperty(true)]
public int RemoveAt { get; }
Property Value
Type |
---|
System.Int32 |