New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Constructors

Initializes a new instance of the SparkAxisCollection class.

C#
public SparkAxisCollection(SparkArea owner)
Parameters:ownerSparkArea

The owner.

Properties

Gets the owner.

C#
public SparkArea Owner { get; }
Property Value:

The owner.

Methods

Adds the range.

C#
public void AddRange(params SparkAxis[] items)
Parameters:itemsSparkAxis[]

Removes all elements from the Collection<T>.

C#
protected override void ClearItems()

Overrides: Collection<SparkAxis>.ClearItems()

Gets the axis collection.

C#
public T[] Get<T>() where T : SparkAxis
Returns:

T[]

Gets the axis at the specified index.

C#
public T Get<T>(int index) where T : SparkAxis
Parameters:indexint

The index.

Returns:

T

Gets the render enumerator.

C#
public IEnumerator<SparkAxis> GetRenderEnumerator()
Returns:

IEnumerator<SparkAxis>

Inserts the item.

C#
protected override void InsertItem(int index, SparkAxis item)
Parameters:indexint

The index.

itemSparkAxis

The item.

Overrides: Collection<SparkAxis>.InsertItem(int, SparkAxis)

Determines whether the specified index is attached.

C#
public bool IsAttached(int index)
Parameters:indexint

The index.

Returns:

bool

Remove all unused axes from the collection

C#
public void Purge()

Removes the element at the specified index of the Collection<T>.

C#
protected override void RemoveItem(int index)
Parameters:indexint

The zero-based index of the element to remove.

Exceptions:

ArgumentOutOfRangeException

index is less than zero.-or-index is equal to or greater than Count.

Overrides: Collection<SparkAxis>.RemoveItem(int)