[]
Represents a collection of stripes.
public class StripeCollection : IList, ICollection, IList<Stripe>, ICollection<Stripe>, IEnumerable<Stripe>, IEnumerable, IXmlSerializable
Public Class StripeCollection
Implements IList, ICollection, IList(Of Stripe), ICollection(Of Stripe), IEnumerable(Of Stripe), IEnumerable, IXmlSerializable
Name | Description |
---|---|
Count | Gets the number of stripes in the collection. |
this[int] | Gets or sets the stripe at the specified index. |
Name | Description |
---|---|
Add(Stripe) | Adds a stripe to the collection. |
AddRange(Stripe[]) | Adds an array of stripes to the collection. |
Clear() | Removes all stripes from the collection. |
Contains(Stripe) | Determines whether the collection contains a specific stripe. |
CopyTo(Stripe[], int) | Copies the stripes in the collection to an array, starting at the specified array index. |
GetEnumerator() | Gets an enumerator that iterates through the collection. |
GetSchema() | This method is reserved and should not be used. |
IndexOf(Stripe) | Determines the index of the stripe in the collection. |
Insert(int, Stripe) | Inserts a stripe into the collection at the specified index. |
InsertRange(int, Stripe[]) | Inserts an array of stripes into the collection at the specified index. |
OnChanged(EventArgs) | Raises the Changed event. |
ReadXml(XmlReader) | Generates an object from its XML representation. |
Remove(Stripe) | Removes the specified stripe from the collection. |
RemoveAt(int) | Removes the stripe at the specified index. |
WriteXml(XmlWriter) | Converts an object into its XML representation. |
Name | Description |
---|---|
Changed | Occurs when the collection is changed. |