Class GridItemsSourceChangedEventArgs
Provides data for the ItemsSourceChanged event.
Inheritance
System.Object
GridItemsSourceChangedEventArgs
Namespace: Syncfusion.SfDataGrid
Assembly: Syncfusion.SfDataGrid.iOS.dll
Syntax
public class GridItemsSourceChangedEventArgs : EventArgs
Constructors
GridItemsSourceChangedEventArgs(Object, Object, ICollectionViewAdv, ICollectionViewAdv)
Initializes a new instance of the GridItemsSourceChangedEventArgs class.
Declaration
public GridItemsSourceChangedEventArgs(object oldItemSource, object newItemSource, ICollectionViewAdv oldView, ICollectionViewAdv newView)
Parameters
Type | Name | Description |
---|---|---|
System.Object | oldItemSource | The old item source. |
System.Object | newItemSource | The new item source. |
ICollectionViewAdv | oldView | The old View of the source. |
ICollectionViewAdv | newView | The new View of the source. |
Properties
NewItemSource
Gets the new item source.
Declaration
public object NewItemSource { get; }
Property Value
Type |
---|
System.Object |
NewView
Gets the new view.
Declaration
public ICollectionViewAdv NewView { get; }
Property Value
Type |
---|
ICollectionViewAdv |
OldItemSource
Gets the old item source.
Declaration
public object OldItemSource { get; }
Property Value
Type |
---|
System.Object |
OldView
Gets the old view.
Declaration
public ICollectionViewAdv OldView { get; }
Property Value
Type |
---|
ICollectionViewAdv |