Class ColorEntryCollection

ColorEntryCollection class

Contains the document’s color table. Each document contains a single color table, which lists the 24 standard colors that are available for application to objects such as shapes, text, and layers in the document.

public class ColorEntryCollection : Collection<ColorEntry>

Properties

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

Methods

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

See Also