Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Handle a list of edgepoints exactly like an ArrayList
Inheritance Hierarchy
System.Object
  System.Collections.ArrayList
    Microsoft.VisualStudio.Modeling.Diagrams.EdgePointCollection
Namespace:  Microsoft.VisualStudio.Modeling.Diagrams
Assembly:  Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.Diagrams.12.0.dll)
Syntax
'Declaration
<SerializableAttribute> _
<TypeConverterAttribute(GetType(EdgePointCollectionConverter))> _
Public Class EdgePointCollection _
    Inherits ArrayList
[SerializableAttribute]
[TypeConverterAttribute(typeof(EdgePointCollectionConverter))]
public class EdgePointCollection : ArrayList
[SerializableAttribute]
[TypeConverterAttribute(typeof(EdgePointCollectionConverter))]
public ref class EdgePointCollection : public ArrayList
[<SerializableAttribute>]
[<TypeConverterAttribute(typeof(EdgePointCollectionConverter))>]
type EdgePointCollection =  
    class 
        inherit ArrayList 
    end
public class EdgePointCollection extends ArrayList
The EdgePointCollection type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| .gif) | EdgePointCollection() | |
| .gif) | EdgePointCollection(ICollection) | |
| .gif) | EdgePointCollection(Int32) | 
Top
Properties
| Name | Description | |
|---|---|---|
| .gif) | Capacity | Gets or sets the number of elements that the ArrayList can contain. (Inherited from ArrayList.) | 
| .gif) | Count | Gets the number of elements actually contained in the ArrayList. (Inherited from ArrayList.) | 
| .gif) | IsFixedSize | Gets a value indicating whether the ArrayList has a fixed size. (Inherited from ArrayList.) | 
| .gif) | IsReadOnly | (Overrides ArrayList.IsReadOnly.) | 
| .gif) | IsSynchronized | Gets a value indicating whether access to the ArrayList is synchronized (thread safe). (Inherited from ArrayList.) | 
| .gif) | Item | |
| .gif) | SyncRoot | Gets an object that can be used to synchronize access to the ArrayList. (Inherited from ArrayList.) | 
Top
Methods
| Name | Description | |
|---|---|---|
| .gif) | Add(Object) | Adds an object to the end of the ArrayList. (Inherited from ArrayList.) | 
| .gif) | Add(EdgePoint) | |
| .gif) | AddRange | Adds the elements of an ICollection to the end of the ArrayList. (Inherited from ArrayList.) | 
| .gif) | BinarySearch(Object) | Searches the entire sorted ArrayList for an element using the default comparer and returns the zero-based index of the element. (Inherited from ArrayList.) | 
| .gif) | BinarySearch(Object, IComparer) | Searches the entire sorted ArrayList for an element using the specified comparer and returns the zero-based index of the element. (Inherited from ArrayList.) | 
| .gif) | BinarySearch(Int32, Int32, Object, IComparer) | Searches a range of elements in the sorted ArrayList for an element using the specified comparer and returns the zero-based index of the element. (Inherited from ArrayList.) | 
| .gif) | Clear | Removes all elements from the ArrayList. (Inherited from ArrayList.) | 
| .gif) | Clone | Creates a shallow copy of the ArrayList. (Inherited from ArrayList.) | 
| .gif) | Contains(Object) | Determines whether an element is in the ArrayList. (Inherited from ArrayList.) | 
| .gif) | Contains(EdgePoint) | |
| .gif) | CopyTo(Array) | Copies the entire ArrayList to a compatible one-dimensional Array, starting at the beginning of the target array. (Inherited from ArrayList.) | 
| .gif) | CopyTo(array<EdgePoint[]) | |
| .gif) | CopyTo(Array, Int32) | Copies the entire ArrayList to a compatible one-dimensional Array, starting at the specified index of the target array. (Inherited from ArrayList.) | 
| .gif) | CopyTo(array<EdgePoint[], Int32) | |
| .gif) | CopyTo(Int32, Array, Int32, Int32) | Copies a range of elements from the ArrayList to a compatible one-dimensional Array, starting at the specified index of the target array. (Inherited from ArrayList.) | 
| .gif) | CopyTo(Int32, array<EdgePoint[], Int32, Int32) | |
| .gif) | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | 
| .gif) | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | 
| .gif) | GetEnumerator() | Returns an enumerator for the entire ArrayList. (Inherited from ArrayList.) | 
| .gif) | GetEnumerator(Int32, Int32) | Returns an enumerator for a range of elements in the ArrayList. (Inherited from ArrayList.) | 
| .gif) | GetHashCode | Serves as the default hash function. (Inherited from Object.) | 
| .gif) | GetRange | Returns an ArrayList which represents a subset of the elements in the source ArrayList. (Inherited from ArrayList.) | 
| .gif) | GetType | Gets the Type of the current instance. (Inherited from Object.) | 
| .gif) | IndexOf(Object) | Searches for the specified Object and returns the zero-based index of the first occurrence within the entire ArrayList. (Inherited from ArrayList.) | 
| .gif) | IndexOf(EdgePoint) | |
| .gif) | IndexOf(Object, Int32) | Searches for the specified Object and returns the zero-based index of the first occurrence within the range of elements in the ArrayList that extends from the specified index to the last element. (Inherited from ArrayList.) | 
| .gif) | IndexOf(Object, Int32, Int32) | Searches for the specified Object and returns the zero-based index of the first occurrence within the range of elements in the ArrayList that starts at the specified index and contains the specified number of elements. (Inherited from ArrayList.) | 
| .gif) | Insert(Int32, Object) | Inserts an element into the ArrayList at the specified index. (Inherited from ArrayList.) | 
| .gif) | Insert(Int32, EdgePoint) | |
| .gif) | InsertRange | Inserts the elements of a collection into the ArrayList at the specified index. (Inherited from ArrayList.) | 
| .gif) | LastIndexOf(Object) | Searches for the specified Object and returns the zero-based index of the last occurrence within the entire ArrayList. (Inherited from ArrayList.) | 
| .gif) | LastIndexOf(Object, Int32) | Searches for the specified Object and returns the zero-based index of the last occurrence within the range of elements in the ArrayList that extends from the first element to the specified index. (Inherited from ArrayList.) | 
| .gif) | LastIndexOf(Object, Int32, Int32) | Searches for the specified Object and returns the zero-based index of the last occurrence within the range of elements in the ArrayList that contains the specified number of elements and ends at the specified index. (Inherited from ArrayList.) | 
| .gif) | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | 
| .gif) .gif) | ReadOnly | |
| .gif) | Remove(Object) | Removes the first occurrence of a specific object from the ArrayList. (Inherited from ArrayList.) | 
| .gif) | Remove(EdgePoint) | |
| .gif) | RemoveAt | Removes the element at the specified index of the ArrayList. (Inherited from ArrayList.) | 
| .gif) | RemoveRange | Removes a range of elements from the ArrayList. (Inherited from ArrayList.) | 
| .gif) | Reverse() | Reverses the order of the elements in the entire ArrayList. (Inherited from ArrayList.) | 
| .gif) | Reverse(Int32, Int32) | Reverses the order of the elements in the specified range. (Inherited from ArrayList.) | 
| .gif) | SetRange | Copies the elements of a collection over a range of elements in the ArrayList. (Inherited from ArrayList.) | 
| .gif) | Sort() | Sorts the elements in the entire ArrayList. (Inherited from ArrayList.) | 
| .gif) | Sort(IComparer) | Sorts the elements in the entire ArrayList using the specified comparer. (Inherited from ArrayList.) | 
| .gif) | Sort(Int32, Int32, IComparer) | Sorts the elements in a range of elements in ArrayList using the specified comparer. (Inherited from ArrayList.) | 
| .gif) | ToArray() | Copies the elements of the ArrayList to a new Object array. (Inherited from ArrayList.) | 
| .gif) | ToArray(Type) | Copies the elements of the ArrayList to a new array of the specified element type. (Inherited from ArrayList.) | 
| .gif) | ToString | Returns a string that represents the current object. (Inherited from Object.) | 
| .gif) | TrimToSize | Sets the capacity to the actual number of elements in the ArrayList. (Inherited from ArrayList.) | 
Top
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.