IBindingList Properties
.NET Framework 4.5
The IBindingList type exposes the following members.
| Name | Description | |
|---|---|---|
|
AllowEdit | Gets whether you can update items in the list. |
|
AllowNew | Gets whether you can add items to the list using AddNew. |
|
AllowRemove | Gets whether you can remove items from the list, using Remove or RemoveAt. |
|
Count | Gets the number of elements contained in the ICollection. (Inherited from ICollection.) |
|
IsFixedSize | Gets a value indicating whether the IList has a fixed size. (Inherited from IList.) |
|
IsReadOnly | Gets a value indicating whether the IList is read-only. (Inherited from IList.) |
|
IsSorted | Gets whether the items in the list are sorted. |
|
IsSynchronized | Gets a value indicating whether access to the ICollection is synchronized (thread safe). (Inherited from ICollection.) |
|
Item | Gets or sets the element at the specified index. (Inherited from IList.) |
|
SortDirection | Gets the direction of the sort. |
|
SortProperty | Gets the PropertyDescriptor that is being used for sorting. |
|
SupportsChangeNotification | Gets whether a ListChanged event is raised when the list changes or an item in the list changes. |
|
SupportsSearching | Gets whether the list supports searching using the Find method. |
|
SupportsSorting | Gets whether the list supports sorting. |
|
SyncRoot | Gets an object that can be used to synchronize access to the ICollection. (Inherited from ICollection.) |