Class PageCollection

PageCollection class

Page collection.

public class PageCollection : Collection<Page>, IDisposable

Properties

NameDescription
Capacity { get; set; }
Count { get; }
Item { get; set; }

Methods

NameDescription
Add(Page)Add the page in the collection.
BinarySearch(Page)
BinarySearch(Page, IComparer<Page>)
BinarySearch(int, int, Page, IComparer<Page>)
Clear()
Contains(Page)
CopyTo(Page[])
CopyTo(Page[], int)
CopyTo(int, Page[], int, int)
Dispose()Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Exists(Predicate<Page>)
Find(Predicate<Page>)
FindAll(Predicate<Page>)
FindIndex(Predicate<Page>)
FindIndex(int, Predicate<Page>)
FindIndex(int, int, Predicate<Page>)
FindLast(Predicate<Page>)
FindLastIndex(Predicate<Page>)
FindLastIndex(int, Predicate<Page>)
FindLastIndex(int, int, Predicate<Page>)
GetEnumerator()
GetPage(int)Gets the element at the specified ID.
GetPage(string)Gets the element at the specified name.
IndexOf(Page)
IndexOf(Page, int)
IndexOf(Page, int, int)
LastIndexOf(Page)
LastIndexOf(Page, int)
LastIndexOf(Page, int, int)
Remove(Page)Remove the page from the collection.
RemoveAt(int)

See Also