DynamicCollectionBase Properties
An abstract class that serves as the base class for DynamicCollection.| Name | Description |
|---|---|
| AllowEdit | Specifies whether the collection is read-only. This property is implemented to support the IBindingList interface. |
| AllowNew | Specifies whether new objects can be added to the collection. This property is implemented to support the IBindingList interface. |
| AllowRemove | Specifies whether objects can be removed from the collection. This property is implemented to support the IBindingList interface. |
| Count | Returns the count of objects in the collection. This property is implemented to support the ICollection interface. |
| Criteria | Specifies criteria used to filter objects in the collection. |
| DeleteObjectOnRemove | Specifies whether objects are deleted from a storage when they are removed from the collection. |
| DisplayableProperties | For internal use. |
| InTransaction | Specifies if the specified Criteria and Sorting parameters are applied to all objects (in the database and retrieved). |
| IsDisposed | Specifies whether the collection has been disposed of. For internal use. |
| IsFixedSize | Indicates whether the collection has a fixed size. This property is implemented to support the IList interface. |
| IsLoaded | Indicates whether the collection was populated with objects. |
| IsReadOnly | Specifies whether the collection is read-only. This property is implemented to support the IList interface. |
| IsSynchronized | Indicates whether access to the collection is synchronized (thread safe). This property is implemented to support the ICollection interface. |
| Item[Int32] | Gets or sets an object at the specified index. This property is implemented to support the IList interface. |
| ObjectSpace | Returns the Object Space used to manipulate the collection’s objects. |
| ObjectType | Returns the type of objects that the Objects collection can contain. |
| Sorting | Specifies the list of SortProperty objects that specify the sort order for the collection. |
| SyncRoot | Gets an object that can be used to synchronize access to the collection. This property is implemented to support the ICollection interface. |
| TopReturnedObjectsCount | Specifies the maximum number of objects that can be retrieved from the collection. |
See Also