[]
Represents a collection of bevels.
public class BevelCollection : IList, ICollection, IList<Bevel>, ICollection<Bevel>, IEnumerable<Bevel>, IEnumerable, ICloneable
Public Class BevelCollection
Implements IList, ICollection, IList(Of Bevel), ICollection(Of Bevel), IEnumerable(Of Bevel), IEnumerable, ICloneable
| Name | Description |
|---|---|
| BevelCollection() | Creates a new collection of bevels. |
| BevelCollection(BevelCollection) | Creates a new collection of bevels that is a copy of the specified collection of bevels. |
| Name | Description |
|---|---|
| Count | Gets the number of bevels in the collection. |
| this[int] | Gets or sets the bevel at the specified index. |
| Name | Description |
|---|---|
| Add(Bevel) | Adds a bevel to the collection. |
| AddRange(Bevel[]) | Adds an array of bevels to the collection. |
| Clear() | Removes all bevels from the collection. |
| Clone() | Creates a new collection that is a copy of this collection. |
| Contains(Bevel) | Determines whether the collection contains a specific bevel. |
| CopyTo(Bevel[], int) | Copies the bevels in the collection to an array, starting at the specified array index. |
| GetEnumerator() | Gets an enumerator that iterates through the collection. |
| IndexOf(Bevel) | Determines the index of the bevel in the collection. |
| Insert(int, Bevel) | Inserts a bevel into the collection at the specified index. |
| InsertRange(int, Bevel[]) | Inserts an array of bevels into the collection at the specified index. |
| OnChanged(EventArgs) | Raises the Changed event. |
| Remove(Bevel) | Removes a bevel from the collection. |
| RemoveAt(int) | Removes a bevel from the collection at the specified index. |
| SetBevel(int, Bevel) | Sets the bevel at the specified index. |
| Name | Description |
|---|---|
| Changed | Occurs when the collection is changed. |