Class CollectionChangedEventArgsFactory
Inheritance
System.Object
CollectionChangedEventArgsFactory
Namespace: Telerik.Windows.Core
Assembly: Telerik.Windows.Scheduling.Core.dll
Syntax
public static class CollectionChangedEventArgsFactory : Object
Methods
GetAddArguments(IList, Int32)
Declaration
public static NotifyCollectionChangedEventArgs GetAddArguments(IList itemsToAdd, int startIndex)
Parameters
System.Collections.IList
itemsToAdd
|
System.Int32
startIndex
|
Returns
System.Collections.Specialized.NotifyCollectionChangedEventArgs
|
GetNewItems(NotifyCollectionChangedEventArgs)
Declaration
public static IList GetNewItems(this NotifyCollectionChangedEventArgs e)
Parameters
System.Collections.Specialized.NotifyCollectionChangedEventArgs
e
|
Returns
System.Collections.IList
|
GetOldItems(NotifyCollectionChangedEventArgs)
Declaration
public static IList GetOldItems(this NotifyCollectionChangedEventArgs e)
Parameters
System.Collections.Specialized.NotifyCollectionChangedEventArgs
e
|
Returns
System.Collections.IList
|
GetRemoveArguments(IList, Int32)
Declaration
public static NotifyCollectionChangedEventArgs GetRemoveArguments(IList itemsToRemove, int startIndex)
Parameters
System.Collections.IList
itemsToRemove
|
System.Int32
startIndex
|
Returns
System.Collections.Specialized.NotifyCollectionChangedEventArgs
|
GetReplaceArguments(IList, IList, Int32)
Declaration
public static NotifyCollectionChangedEventArgs GetReplaceArguments(IList oldItems, IList newItems, int startIndex)
Parameters
System.Collections.IList
oldItems
|
System.Collections.IList
newItems
|
System.Int32
startIndex
|
Returns
System.Collections.Specialized.NotifyCollectionChangedEventArgs
|
GetResetArguments()
Declaration
public static NotifyCollectionChangedEventArgs GetResetArguments()
Returns
System.Collections.Specialized.NotifyCollectionChangedEventArgs
|