ClassResourceItemCollection
A class for a typical collection of a resource item.
Definition
Namespace:Telerik.Windows.Controls.ScheduleView
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Syntax:
public class ResourceItemCollection : ObservableCollection<ResourceItem>, IList<ResourceItem>, ICollection<ResourceItem>, IList, ICollection, IReadOnlyList<ResourceItem>, IReadOnlyCollection<ResourceItem>, IEnumerable<ResourceItem>, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
Inheritance: objectCollection<ResourceItem>ObservableCollection<ResourceItem>ResourceItemCollection
Implements:
Inherited Members
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
ObservableCollection<ResourceItem>
The checked items.
Methods
ClearItems()
Removes all items from the collection.
Declaration
protected override void ClearItems()
Overrides
InsertItem(int, ResourceItem)
Inserts an item into the collection at the specified index.
Declaration
protected override void InsertItem(int index, ResourceItem item)
Parameters
index
The zero-based index at which item should be inserted.
item
The object to insert.
Overrides
RemoveItem(int)
Removes the item at the specified index of the collection.
Declaration
protected override void RemoveItem(int index)
Parameters
index
The zero-based index of the element to remove.
Overrides
SetItem(int, ResourceItem)
Replaces the element at the specified index.
Declaration
protected override void SetItem(int index, ResourceItem item)
Parameters
index
The zero-based index of the element to replace.
item
The new value for the element at the specified index.
Overrides