Class DataGridItemsSourceChangedEventArgs
Provides the data for the ItemsSourceChanged event.
Inheritance
System.Object
DataGridItemsSourceChangedEventArgs
Namespace: Syncfusion.Maui.DataGrid
Assembly: Syncfusion.Maui.DataGrid.dll
Syntax
public class DataGridItemsSourceChangedEventArgs : EventArgs
Constructors
DataGridItemsSourceChangedEventArgs(Object, Object, ICollectionViewAdv, ICollectionViewAdv)
Create new instance for DataGridItemsSourceChangedEventArgs class
Declaration
public DataGridItemsSourceChangedEventArgs(object oldItems, object newItems, ICollectionViewAdv oldView, ICollectionViewAdv newView)
Parameters
Type | Name | Description |
---|---|---|
System.Object | oldItems | The old items source |
System.Object | newItems | The new items source |
ICollectionViewAdv | oldView | The old view source |
ICollectionViewAdv | newView | The new view of source |
Properties
NewItems
Gets the new items source
Declaration
public object NewItems { get; }
Property Value
Type |
---|
System.Object |
NewView
Gets the new view
Declaration
public ICollectionViewAdv NewView { get; }
Property Value
Type |
---|
ICollectionViewAdv |
OldItems
Gets the old items source
Declaration
public object OldItems { get; }
Property Value
Type |
---|
System.Object |
OldView
Gets the old view
Declaration
public ICollectionViewAdv OldView { get; }
Property Value
Type |
---|
ICollectionViewAdv |