RadItemCollection
Represents a specialized collection that stores and manages RadItem objects with support for ownership relationships, change notifications, and hierarchical item management.
Definition
Namespace:Telerik.WinControls
Assembly:Telerik.WinControls.dll
Syntax:
public class RadItemCollection : CollectionBase, IList, ICollection, IEnumerable
Inheritance: objectCollectionBaseRadItemCollection
Derived Classes:
Implements:
Inherited Members
Constructors
Initializes a new instance of the RadItemCollectionBase class.
public RadItemCollection()
Initializes a new instance of RadItemCollection based on another RadItemCollection.
public RadItemCollection(RadItemCollection value)
A RadItemCollection from which the contents are copied.
Properties
public virtual Type DefaultType { get; set; }
Gets or sets an array of the excluded items' types for this collection.
[Browsable(false)]
public virtual Type[] ExcludedTypes { get; set; }
Gets or sets an array of the items' types in the collection.
public virtual Type[] ItemTypes { get; set; }
Gets or sets an array of the sealed items' types for this collection. That are types that are allowed but not their descendants.
[Browsable(false)]
public virtual Type[] SealedTypes { get; set; }
Represents the entry at the specified index of the RadItem.
public virtual RadItem this[int index] { get; set; }
The zero-based index of the entry to locate in the collection.
Property Value:The entry at the specified index of the collection.
Exceptions:index is outside the valid range of indexes for the collection.
Gets the first found item, with Name property equal to itemName specified, case-sensitive.
public virtual RadItem this[string itemName] { get; }
item Name
Property Value:RadItem if found, null (Nothing in VB.NET) otherwise
Methods
Adds the contents of another RadItemCollection to the end of the collection.
public void AddRange(RadItemCollection value)
A RadItemCollection containing the objects to add to the collection.
Copies the RadItemCollection values to a one-dimensional Array instance at the specified index.
public void CopyTo(RadItem[] array, int index)
The one-dimensional Array that is the destination of the values copied from RadItemCollection .
indexintThe index in array where copying begins.
array is multidimensional.
-or-
The number of elements in the RadItemCollection is greater than the available space between index and the end of array.
array is null.
index is less than array's lowbound.
Returns an enumerator that can iterate through the RadItemCollection .
public RadItemCollection.RadItemEnumerator GetEnumerator()
RadItemCollection.RadItemEnumerator
None.
protected override void OnClear()
Overrides:
protected override void OnClearComplete()
Overrides:
protected virtual void OnItemsChanged(RadItem target, ItemsChangeOperation operation)
protected virtual void OnSort()
protected virtual void OnSortComplete()
public void ResumeNotifications()
Sorts the elements in the entire RadElementCollection using the IComparable implementation of each element.
public void Sort()
Sorts the elements in the entire RadElementCollection using the specified comparer.
public void Sort(IComparer comparer)
The IComparer implementation to use when comparing elements.
Sorts the elements in a range of elements in RadElementCollection using the specified comparer.
public void SuspendNotifications()
Events
Fires when item is changed.
public event ItemChangedDelegate ItemsChanged