Class GanttViewDataItemView
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class GanttViewDataItemView : IList<GanttViewDataItem>, ICollection<GanttViewDataItem>, IEnumerable<GanttViewDataItem>, IEnumerable
Constructors
GanttViewDataItemView(GanttViewDataItem)
Initializes a new instance of the Gantt
Declaration
public GanttViewDataItemView(GanttViewDataItem owner)
Parameters
Gantt The owner. |
Properties
Count
Gets the number of elements contained in this collection.
Declaration
public int Count { get; }
Property Value
System. The number of elements contained in this collection. |
Implements
IsEmpty
Gets a value indicating whether this instance is empty.
Declaration
protected bool IsEmpty { get; }
Property Value
System.
|
IsReadOnly
Gets a value indicating whether ththis collection is read-only.
Declaration
public bool IsReadOnly { get; }
Property Value
System. true if this collection is read-only; otherwise, false. |
Implements
Item[Int32]
Gets or sets the element at the specified index.
Declaration
public GanttViewDataItem this[int index] { get; set; }
Parameters
System. The index. |
Property Value
Implements
Methods
Add(GanttViewDataItem)
Adds the item to the collection.
Declaration
public void Add(GanttViewDataItem item)
Parameters
Gantt The object to add. |
Implements
Clear()
Removes all items.
Declaration
public void Clear()
Implements
Contains(GanttViewDataItem)
Determines whether the collection contains a specific value.
Declaration
public bool Contains(GanttViewDataItem item)
Parameters
Gantt The object to locate. |
Returns
System. true if |
Implements
CopyTo(GanttViewDataItem[], Int32)
Copies all items to the given array.
Declaration
public void CopyTo(GanttViewDataItem[] array, int arrayIndex)
Parameters
Gantt The array. |
System. Index of the array. |
Implements
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<GanttViewDataItem> GetEnumerator()
Returns
System. An IEnumerator that can be used to iterate through the collection. |
Implements
GetGanttViewDataItemEnumerator()
Gets the gantt view data item enumerator.
Declaration
public IGanttViewDataItemEnumerator GetGanttViewDataItemEnumerator()
Returns
GetGanttViewDataItemEnumerator(Int32)
Gets the gantt view data item enumerator.
Declaration
public IGanttViewDataItemEnumerator GetGanttViewDataItemEnumerator(int position)
Parameters
System. The position. |
Returns
GetGanttViewDataItemEnumerator(GanttViewDataItem)
Gets the gantt view data item enumerator.
Declaration
public IGanttViewDataItemEnumerator GetGanttViewDataItemEnumerator(GanttViewDataItem item)
Parameters
Gantt The item. |
Returns
IndexOf(GanttViewDataItem)
Determines the index of a specific item.
Declaration
public int IndexOf(GanttViewDataItem item)
Parameters
Gantt The object to locate. |
Returns
System. The index of |
Implements
Insert(Int32, GanttViewDataItem)
Inserts an item to the collection at the specified index.
Declaration
public void Insert(int index, GanttViewDataItem item)
Parameters
System. The zero-based index at which |
Gantt The object to insert into the collection. |
Implements
Remove(GanttViewDataItem)
Removes the first occurrence of a specific object.
Declaration
public bool Remove(GanttViewDataItem item)
Parameters
Gantt The object to remove. |
Returns
System. true if |
Implements
RemoveAt(Int32)
Removes the item at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
System. The zero-based index of the item to remove. |
Implements
Update()
Updates this instance.
Declaration
protected bool Update()
Returns
System.
|
UpdateView()
Updates the view.
Declaration
protected bool UpdateView()
Returns
System.
|
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
System.
|