Class ResourceItemCollection
A class for a typical collection of a resource item.
Inheritance
Namespace: Telerik.Windows.Controls.ScheduleView
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public class ResourceItemCollection : ObservableCollection<ResourceItem>
Constructors
ResourceItemCollection()
Initializes a new instance of the ResourceItemCollection class.
Declaration
public ResourceItemCollection()
Properties
CheckedItems
Gets or sets the checked items.
Declaration
public ObservableCollection<ResourceItem> CheckedItems { get; }
Property Value
System.Collections.ObjectModel.ObservableCollection<ResourceItem>
The checked items. |
Methods
ClearItems()
Removes all items from the collection.
Declaration
protected override void ClearItems()
InsertItem(Int32, ResourceItem)
Inserts an item into the collection at the specified index.
Declaration
protected override void InsertItem(int index, ResourceItem item)
Parameters
System.Int32
index
The zero-based index at which |
ResourceItem
item
The object to insert. |
RemoveItem(Int32)
Removes the item at the specified index of the collection.
Declaration
protected override void RemoveItem(int index)
Parameters
System.Int32
index
The zero-based index of the element to remove. |
SetItem(Int32, ResourceItem)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, ResourceItem item)
Parameters
System.Int32
index
The zero-based index of the element to replace. |
ResourceItem
item
The new value for the element at the specified index. |