Class FontCollection

FontCollection class

Contains a collection of Font elements.

public class FontCollection : Collection<Font>

Constructors

NameDescription
FontCollection()Constructor.

Properties

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

Methods

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

See Also