The collection of frames in the gallery. More...
Inherits IList< Frame >.
Public Member Functions | |
| void | Add (Frame item) |
| Adds a frame to the collection. | |
| void | Clear () |
| Clears the collection. | |
| bool | Contains (Frame item) |
| Determines whether the collection contains a specific frame. | |
| void | CopyTo (Frame[] array, int arrayIndex) |
| Copies the frames to an array, starting at a particular array index. | |
| IEnumerator< Frame > | GetEnumerator () |
| Returns an enumerator that iterates through the collection. | |
| int | IndexOf (Frame item) |
| Returns the index of the frame in the collection. | |
| void | Insert (int index, Frame item) |
| Inserts a frame into the collection at the specified index. | |
| bool | Remove (Frame item) |
| Removes the first occurrence of a specific frame from the collection. | |
| void | RemoveAt (int index) |
| Removes the frame at the specified index. | |
Properties | |
| int | Count [get] |
| The number of frames in the collection. | |
| bool | IsReadOnly [get] |
| Whether the collection is read-only. | |
| List< Frame > | items [get] |
| The frames in the collection. | |
| Frame | this[int index] [get, set] |
| Gets or sets the frame at the specified index. | |
The collection of frames in the gallery.
| void Add | ( | Frame | item | ) |
Adds a frame to the collection.
| item | The frame to add. |
| bool Contains | ( | Frame | item | ) |
Determines whether the collection contains a specific frame.
| item | The frame to locate. |
| void CopyTo | ( | Frame[] | array, |
| int | arrayIndex ) |
Copies the frames to an array, starting at a particular array index.
| array | The array to copy the frames to. |
| arrayIndex | The index in the array at which to start copying. |
| IEnumerator< Frame > GetEnumerator | ( | ) |
Returns an enumerator that iterates through the collection.
| int IndexOf | ( | Frame | item | ) |
Returns the index of the frame in the collection.
| item | The frame to locate. |
| void Insert | ( | int | index, |
| Frame | item ) |
Inserts a frame into the collection at the specified index.
| index | The index at which to insert the frame. |
| item | The frame to insert. |
| bool Remove | ( | Frame | item | ) |
Removes the first occurrence of a specific frame from the collection.
| item | The frame to remove. |
| void RemoveAt | ( | int | index | ) |
Removes the frame at the specified index.
| index | The index of the frame to remove. |
|
getset |
Gets or sets the frame at the specified index.
| index | The index of the frame. |