Class GridListChangingEventArgs
Event arguments for ListChanging
Inheritance
System.Object
GridListChangingEventArgs
Namespace: Syncfusion.Windows.Collections.Generic
Assembly: Syncfusion.GridCommon.WPF.dll
Syntax
public class GridListChangingEventArgs : CancelEventArgs
Constructors
GridListChangingEventArgs()
Declaration
public GridListChangingEventArgs()
Properties
Item
Gets or sets the item.
Declaration
public object Item { get; }
Property Value
Type | Description |
---|---|
System.Object | The item. |
ListChangedType
Gets or sets the type of the list changed.
Declaration
public ListChangedType ListChangedType { get; set; }
Property Value
Type | Description |
---|---|
System.ComponentModel.ListChangedType | The type of the list changed. |
NewIndex
Gets or sets the new index.
Declaration
public int NewIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The new index. |
OldIndex
Gets or sets the old index.
Declaration
public int OldIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The old index. |