Class
ChartStillIndicatorCollection

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.ChartView.dll

Syntax:

cs-api-definition
public class ChartStillIndicatorCollection : IEnumerable

Inheritance: objectChartStillIndicatorCollection

Implements: IEnumerable

Constructors

ChartStillIndicatorCollection()

Initializes a new instance of the ChartStillIndicatorCollection class.

Declaration

cs-api-definition
public ChartStillIndicatorCollection()

Properties

Count

Gets the number of elements contained in the ICollection<T>.

Declaration

cs-api-definition
public int Count { get; }

Property Value

int

The number of elements contained in the ICollection<T>.

IsReadOnly

Gets a value indicating whether the ICollection<T> is read-only.

Declaration

cs-api-definition
public bool IsReadOnly { get; }

Property Value

bool

true if the ICollection<T> is read-only; otherwise, false.

this[int]

Gets or sets the ChartStillIndicator at the specified index.

Declaration

cs-api-definition
public ChartStillIndicator this[int index] { get; set; }

Parameters

index

int

Property Value

ChartStillIndicator

this[string]

Declaration

cs-api-definition
public ChartStillIndicator this[string name] { get; set; }

Parameters

name

string

Property Value

ChartStillIndicator

Methods

Add(ChartStillIndicator)

Adds the specified item.

Declaration

cs-api-definition
public void Add(ChartStillIndicator item)

Parameters

item

ChartStillIndicator

The item.

Clear()

Removes all items from the ICollection<T>.

Declaration

cs-api-definition
public void Clear()

Exceptions

NotSupportedException

The ICollection<T> is read-only.

Contains(ChartStillIndicator)

Determines whether the collection contains the specified item.

Declaration

cs-api-definition
public bool Contains(ChartStillIndicator item)

Parameters

item

ChartStillIndicator

The item.

Returns

bool

Contains(string)

Determines whether the collection contains the specified name.

Declaration

cs-api-definition
public bool Contains(string name)

Parameters

name

string

The name.

Returns

bool

CopyTo(ChartStillIndicator[], int)

Copies the entire collection starting at the given index.

Declaration

cs-api-definition
public void CopyTo(ChartStillIndicator[] array, int arrayIndex)

Parameters

array

ChartStillIndicator[]

The array.

arrayIndex

int

Index of the array.

GetEnumerator()

Returns an enumerator that iterates through the collection.

Declaration

cs-api-definition
public IEnumerator<ChartStillIndicator> GetEnumerator()

Returns

IEnumerator<ChartStillIndicator>

A IEnumerator<T> that can be used to iterate through the collection.

IndexOf(ChartStillIndicator)

Returns the index of the passed item.

Declaration

cs-api-definition
public int IndexOf(ChartStillIndicator item)

Parameters

item

ChartStillIndicator

The item.

Returns

int

IndexOf(string)

Returns the index of the passed name.

Declaration

cs-api-definition
public int IndexOf(string name)

Parameters

name

string

The name.

Returns

int

Insert(int, ChartStillIndicator)

Inserts the item at the specified index.

Declaration

cs-api-definition
public void Insert(int index, ChartStillIndicator item)

Parameters

index

int

The index.

item

ChartStillIndicator

The item.

Remove(ChartStillIndicator)

Removes the specified item.

Declaration

cs-api-definition
public bool Remove(ChartStillIndicator item)

Parameters

item

ChartStillIndicator

The item.

Returns

bool

Remove(string)

Removes the specified name.

Declaration

cs-api-definition
public bool Remove(string name)

Parameters

name

string

The name.

Returns

bool

RemoveAt(int)

Removes the IList<T> item at the specified index.

Declaration

cs-api-definition
public void RemoveAt(int index)

Parameters

index

int

The zero-based index of the item to remove.

Exceptions

ArgumentOutOfRangeException

index is not a valid index in the IList<T>.

NotSupportedException

The IList<T> is read-only.