BindingList<T> Properties
.NET Framework 4
The BindingList<T> type exposes the following members.
| Name | Description | |
|---|---|---|
|
AllowEdit | Gets or sets a value indicating whether items in the list can be edited. |
|
AllowNew | Gets or sets a value indicating whether you can add items to the list using the AddNew method. |
|
AllowRemove | Gets or sets a value indicating whether you can remove items from the collection. |
|
Count | Gets the number of elements actually contained in the Collection<T>. (Inherited from Collection<T>.) |
|
IsSortedCore | Gets a value indicating whether the list is sorted. |
|
Item | Gets or sets the element at the specified index. (Inherited from Collection<T>.) |
|
Items | Gets a IList<T> wrapper around the Collection<T>. (Inherited from Collection<T>.) |
|
RaiseListChangedEvents | Gets or sets a value indicating whether adding or removing items within the list raises ListChanged events. |
|
SortDirectionCore | Gets the direction the list is sorted. |
|
SortPropertyCore | Gets the property descriptor that is used for sorting the list if sorting is implemented in a derived class; otherwise, returns null. |
|
SupportsChangeNotificationCore | Gets a value indicating whether ListChanged events are enabled. |
|
SupportsSearchingCore | Gets a value indicating whether the list supports searching. |
|
SupportsSortingCore | Gets a value indicating whether the list supports sorting. |
| Name | Description | |
|---|---|---|
|
IBindingList.AllowEdit | Gets a value indicating whether items in the list can be edited. |
|
IBindingList.AllowNew | Gets a value indicating whether new items can be added to the list using the AddNew method. |
|
IBindingList.AllowRemove | Gets a value indicating whether items can be removed from the list. |
|
IBindingList.IsSorted | For a description of this member, see IsSorted. |
|
IBindingList.SortDirection | For a description of this member, see SortDirection. |
|
IBindingList.SortProperty | For a description of this member, see SortProperty. |
|
IBindingList.SupportsChangeNotification | For a description of this member, see SupportsChangeNotification. |
|
IBindingList.SupportsSearching | For a description of this member, see SupportsSearching. |
|
IBindingList.SupportsSorting | For a description of this member, see SupportsSorting. |
|
ICollection<T>.IsReadOnly | Gets a value indicating whether the ICollection<T> is read-only. (Inherited from Collection<T>.) |
|
ICollection.IsSynchronized | Gets a value indicating whether access to the ICollection is synchronized (thread safe). (Inherited from Collection<T>.) |
|
ICollection.SyncRoot | Gets an object that can be used to synchronize access to the ICollection. (Inherited from Collection<T>.) |
|
IList.IsFixedSize | Gets a value indicating whether the IList has a fixed size. (Inherited from Collection<T>.) |
|
IList.IsReadOnly | Gets a value indicating whether the IList is read-only. (Inherited from Collection<T>.) |
|
IList.Item | Gets or sets the element at the specified index. (Inherited from Collection<T>.) |
|
IRaiseItemChangedEvents.RaisesItemChangedEvents | Gets a value indicating whether item property value changes raise ListChanged events of type ItemChanged. This member cannot be overridden in a derived class. |