Catel.Collections.NotifyRangedListChangedEventArgs.NotifyRangedListChangedEventArgs C# (CSharp) Method

NotifyRangedListChangedEventArgs() public method

Initializes a new instance of the NotifyRangedListChangedEventArgs class.
public NotifyRangedListChangedEventArgs ( NotifyRangedListChangedAction action ) : System.Collections
action NotifyRangedListChangedAction The real action that was performed on the .
return System.Collections
        public NotifyRangedListChangedEventArgs(NotifyRangedListChangedAction action)
            : base(ListChangedType.Reset, -1)
        {
            Action = action;

            NewStartingIndex = -1;
            OldStartingIndex = -1;
        }

Same methods

NotifyRangedListChangedEventArgs::NotifyRangedListChangedEventArgs ( NotifyRangedListChangedAction action, IList changedItems, IList indices ) : System.Collections
NotifyRangedListChangedEventArgs