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 Resource
Declaration
public ResourceItemCollection()
Properties
CheckedItems
Gets or sets the checked items.
Declaration
public ObservableCollection<ResourceItem> CheckedItems { get; }
Property Value
System. 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. The zero-based index at which |
Resource 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. 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. The zero-based index of the element to replace. |
Resource The new value for the element at the specified index. |