Class TreeGridItemsSourceChangedEventArgs
Provides data for ItemsSourceChanged event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.TreeGrid
Assembly: Syncfusion.SfGrid.WPF.dll
Syntax
public class TreeGridItemsSourceChangedEventArgs : GridEventArgs
Constructors
TreeGridItemsSourceChangedEventArgs(Object, Object, Object)
Initializes a new instance of TreeGridItemsSourceChangedEventArgs class.
Declaration
public TreeGridItemsSourceChangedEventArgs(object originalSource, object oldItemsSource, object newItemsSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The source of the event. |
System.Object | oldItemsSource | The old ItemsSource of the SfTreeGrid. |
System.Object | newItemsSource | The new ItemsSource of the SfTreeGrid. |
Properties
NewItemsSource
Gets the new ItemsSource of SfTreeGrid.
Declaration
public object NewItemsSource { get; }
Property Value
Type | Description |
---|---|
System.Object | An object that contains the new ItemsSource of SfTreeGrid. |
OldItemsSource
Gets an old ItemsSource of SfTreeGrid that is need to be replaced.
Declaration
public object OldItemsSource { get; }
Property Value
Type | Description |
---|---|
System.Object | An object that contains the old ItemsSource of SfTreeGrid. |