ClassChartPaletteCollection
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.ChartView.dll
Syntax:
public class ChartPaletteCollection : Collection<PaletteFamily>, IList, ICollection, IEnumerable
Inheritance: objectCollection<PaletteFamily>ChartPaletteCollection
Implements:
Inherited Members
Constructors
ChartPaletteCollection()
Initializes a new instance of the ChartPaletteCollection class.
Declaration
public ChartPaletteCollection()
ChartPaletteCollection(ChartPalette)
Initializes a new instance of the ChartPaletteCollection class.
Declaration
public ChartPaletteCollection(ChartPalette owner)
Parameters
owner
The owner.
Methods
ClearItems()
Removes all elements from the Collection<T>.
Declaration
protected override void ClearItems()
Overrides
Contains(string)
Determines whether a palette with the specific name is contained.
IndexOf(string)
Gets the index of the passed palette's name.
InsertItem(int, PaletteFamily)
Inserts the item.
Declaration
protected override void InsertItem(int index, PaletteFamily item)
Parameters
index
The index.
item
The item.
Overrides
RemoveItem(int)
Removes the element at the specified index of the Collection<T>.
Declaration
protected override void RemoveItem(int index)
Parameters
index
The zero-based index of the element to remove.
Exceptions
index is less than zero.-or-index is equal
to or greater than Count.
Overrides
SetItem(int, PaletteFamily)
Sets the item at the specified index.
Declaration
protected override void SetItem(int index, PaletteFamily item)
Parameters
index
The index.
item
The item.
Overrides