Class TabCollection

TabCollection class

Contains a collection of Tab elements

public class TabCollection : Collection<Tab>

Properties

NameDescription
Capacity { get; set; }
Count { get; }
Del { get; set; }A flag indicating whether the element has been deleted locally. A value of 1 indicates that the element was deleted locally.
Item { get; set; }
IX { get; set; }The zero-based index of the element within its parent element.

Methods

NameDescription
Add(Tab)Add the Tab object in the collection.
BinarySearch(Tab)
BinarySearch(Tab, IComparer<Tab>)
BinarySearch(int, int, Tab, IComparer<Tab>)
Clear()
Contains(Tab)
CopyTo(Tab[])
CopyTo(Tab[], int)
CopyTo(int, Tab[], int, int)
Exists(Predicate<Tab>)
Find(Predicate<Tab>)
FindAll(Predicate<Tab>)
FindIndex(Predicate<Tab>)
FindIndex(int, Predicate<Tab>)
FindIndex(int, int, Predicate<Tab>)
FindLast(Predicate<Tab>)
FindLastIndex(Predicate<Tab>)
FindLastIndex(int, Predicate<Tab>)
FindLastIndex(int, int, Predicate<Tab>)
GetEnumerator()
IndexOf(Tab)
IndexOf(Tab, int)
IndexOf(Tab, int, int)
LastIndexOf(Tab)
LastIndexOf(Tab, int)
LastIndexOf(Tab, int, int)
Remove(Tab)Remove the Tab object from the collection.
RemoveAt(int)

See Also