In This Article

MicroQualitativeRangeCollection Class

Represents a collection of MicroQualitativeRange objects.

public class MicroQualitativeRangeCollection : DeferrableObservableCollection<MicroQualitativeRange>
Inheritance:
object Collection<MicroQualitativeRange> ObservableCollection<MicroQualitativeRange> DeferrableObservableCollection<MicroQualitativeRange> object

Constructors

MicroQualitativeRangeCollection(MicroBulletGraph)

Initializes a new instance of the MicroQualitativeRangeCollection class.

public MicroQualitativeRangeCollection(MicroBulletGraph chart)
Parameter Type Description
chart MicroBulletGraph

The MicroBulletGraph that owns this collection and the associated ranges.

Methods

ClearItems()

Removes all items from the collection.

protected override void ClearItems()

InsertItem(int, MicroQualitativeRange)

Inserts an item into the collection at the specified index.

protected override void InsertItem(int index, MicroQualitativeRange item)
Parameter Type Description
index int

The zero-based index at which item should be inserted.

item MicroQualitativeRange

The object to insert.

RemoveItem(int)

Removes the item at the specified index of the collection.

protected override void RemoveItem(int index)
Parameter Type Description
index int

The zero-based index of the item to remove.

SetItem(int, MicroQualitativeRange)

Replaces the element at the specified index.

protected override void SetItem(int index, MicroQualitativeRange item)
Parameter Type Description
index int

The zero-based index of the item to replace.

item MicroQualitativeRange

The new value for the element at the specified index.

Inherited Members