[]
Represents a collection of C1JumpTasks.
[ListBindable(false)]
public class JumpTaskCollection : CollectionBase, IList, ICollection, IEnumerable
Name | Description |
---|---|
this[int] | Gets or sets the C1JumpTask at the specified position in the collection. |
this[string] | Gets the first C1JumpTask with the specified title in the collection. |
Owner | Gets the owner C1JumpList. |
Name | Description |
---|---|
Add(C1JumpTask) | Adds the specified C1JumpTask to the collection. |
AddRange(C1JumpTask[]) | Adds a group of C1JumpTask objects to the end of the collection. |
Contains(C1JumpTask) | Determines whether this collection contains the specified C1JumpTask. |
Contains(string) | Determines whether this collection contains an C1JumpTask with the specified title. |
IndexOf(C1JumpTask) | Determines the index of a specific C1JumpTask in the collection. |
IndexOf(string) | Determines index of the first C1JumpTask with the specified title in the collection. |
Insert(int, C1JumpTask) | Inserts the specified C1JumpTask into this collection at the given index. |
OnClear() | Performs additional custom processes when clearing the contents of the JumpTaskCollection instance. |
OnClearComplete() | Performs additional custom processes after clearing the contents of the JumpTaskCollection instance. |
OnInsertComplete(int, object) | Performs additional custom processes after inserting a C1JumpTask into the JumpTaskCollection instance. |
OnRemoveComplete(int, object) | Performs additional custom processes after removing a C1JumpTask from the JumpTaskCollection instance. |
OnSetComplete(int, object, object) | Performs additional custom processes after setting a C1JumpTask in the JumpTaskCollection instance. |
OnValidate(object) | Checks whather the type of the value argument is allowable for this collection. |
Remove(C1JumpTask) | Removes the specified C1JumpTask from the collection. |
Remove(string) | Removes the first occurrence of the C1JumpTask with the specified title from the collection. |