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

Definition

Constructors

Initializes a new instance of the AxisScaleBreakCollection class.

C#
public AxisScaleBreakCollection(AxisModel axis)
Parameters:axisAxisModel

The axis.

Properties

Gets the AxisScaleBreak with the specified name.

C#
public AxisScaleBreak this[string name] { get; }
Parameters:namestring

Methods

Removes all elements from the Collection<T>.

C#
protected override void ClearItems()

Overrides: Collection<AxisScaleBreak>.ClearItems()

Inserts the item.

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

The index.

itemAxisScaleBreak

The item.

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

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<AxisScaleBreak>.RemoveItem(int)