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

A Collection of SettingsNode items. Tunnels events from the items to the Parent. Does not raises SettingsChanged on collection change.

Definition

Namespace:Telerik.Pivot.Core

Assembly:Telerik.Pivot.Core.dll

Type Parameters:

T

A class that inherits the SettingsNode.

Syntax:

C#
public class SettingsNodeCollection<T> : Collection<T>, IReadOnlyList<T>, IReadOnlyCollection<T>, IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable where T : SettingsNode

Inheritance: objectCollection<T>SettingsNodeCollection<T>

Implements: ICollectionICollection<T>IEnumerableIEnumerable<T>IListIList<T>IReadOnlyCollection<T>IReadOnlyList<T>...

Inherited Members Collection<T>.Add(T)Collection<T>.Clear()Collection<T>.CopyTo(T[], int)Collection<T>.Contains(T)Collection<T>.GetEnumerator()Collection<T>.IndexOf(T)Collection<T>.Insert(int, T)Collection<T>.Remove(T)Collection<T>.RemoveAt(int)Collection<T>.CountCollection<T>.ItemsCollection<T>.this[int]...

Constructors

Initializes a new instance of the SettingsNodeCollection<T> class.

C#
public SettingsNodeCollection(SettingsNode parent)
Parameters:parentSettingsNode

The parent SettingsNode.

Properties

Gets the parent SettingsNode.

C#
public SettingsNode Parent { get; }

Methods

C#
protected override void ClearItems()

Overrides: Collection<T>.ClearItems()

C#
protected override void InsertItem(int index, T item)
Parameters:indexintitemT

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

Notifies the Parent SettingsNode for a change.

C#
protected void NotifyChange(SettingsChangedEventArgs settingsEventArgs)
Parameters:settingsEventArgsSettingsChangedEventArgs

The SettingsChangedEventArgs that contains the event data.

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

Overrides: Collection<T>.RemoveItem(int)

C#
protected override void SetItem(int index, T item)
Parameters:indexintitemT

Overrides: Collection<T>.SetItem(int, T)