DekGenius.com
[ Team LiB ] Previous Section Next Section

ListChangedTypeserializable

System.ComponentModel (system.dll)enum

This enumeration is used by the ListChangedEventArgs class to specify the kind of change that caused the event to be raised. The possible change types relate to either items being added, removed or changed, or to the schema of the list changing. The Reset option indicates that substantial changes have been made to the list, and that the observer should refresh its entire display.

public enum ListChangedType {
   Reset = 0,
   ItemAdded = 1,
   ItemDeleted = 2,
   ItemMoved = 3,
   ItemChanged = 4,
   PropertyDescriptorAdded = 5,
   PropertyDescriptorDeleted = 6,
   PropertyDescriptorChanged = 7
}

Hierarchy

System.Object System.ValueType System.Enum(System.IComparabl, System.IFormattable, System.IConvertible) ListChangedType

Returned By

ListChangedEventArgs.ListChangedType

Passed To

ListChangedEventArgs.ListChangedEventArgs()

    [ Team LiB ] Previous Section Next Section