[]
Represents interface for the band collection.
public interface IBandCollection : IList<IBand>, ICollection<IBand>, IEnumerable<IBand>, IEnumerable, INotifyCollectionChanged
Name | Description |
---|---|
this[string] | Gets IBand item from the collection by the name. |
Name | Description |
---|---|
Add(Column) | Adds new band to the end of the IBandCollection. |
Add(string) | Adds new band to the end of the IBandCollection. |
Add(string, string) | Adds new band to the end of the IBandCollection. |
AddRange(IEnumerable<IBand>) | Adds the elements of the specified collection to the end of the IBandCollection. |
AddRange(params string[]) | Creates IBand objects with names specified in the elements of the specified collection and adds it to the end of the IBandCollection. |