The following tables list the members exposed by Generic ObjectView.
| Name | Description | |
|---|---|---|
| ObjectView Constructor | Creates a new instance of the ObjectView Class. |
| 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 ObjectView. | |
| Item | Gets the object at the specified index. | |
| ObjectSet | Specifies the ObjectSet connected with the ObjectView. | |
| Sort | Specifies the string to sort the ObjectView. |
| Name | Description | |
|---|---|---|
| AddNew | Adds a new item to the list. | |
| Contains | Determines whether the ObjectView contains a specific object. | |
| CopyTo | Copies the elements of the ObjectView to an Array, starting at a particular Array index. | |
| Exists | Determines whether the ObjectView contains elements that match the conditions defined by the specified predicate. | |
| Find | Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire ObjectView. | |
| FindAll | Retrieves the all the elements that match the conditions defined by the specified predicate. | |
| FindIndex | Overloaded. | |
| FindLast | Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire ObjectView. | |
| FindLastIndex | Overloaded. | |
| GetEnumerator | Returns an enumerator that iterates through this ObjectView. | |
| IndexOf | Determines the index of a specific item in the ObjectView. | |
| Remove | Removes the first occurrence of a specific object from the ObjectView to the connected ObjectSet'sRemovedList. All objects on the RemovedList are deleted when the changes on the ObjectSet are persisted. | |
| RemoveAt | Moves the object at the specified index from the ObjectView to to the connected ObjectSet'sRemovedList. All objects on the RemovedList are deleted when the changes on the ObjectSet are persisted. | |
| Reset | Resets the ObjectView. | |
| ToObjectSet | Creates and returns a new ObjectSet based on the objects in an existing ObjectView. | |
| ToString | Overridden. Returns the string representation for the object. |
| Name | Description | |
|---|---|---|
| ListChanged | Occurs when the ObjectView changes. |