Represents a collection that stores visual cell elements.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class VisualCellsCollection : IEnumerable
Inheritance: objectVisualCellsCollection
Implements:
Constructors
Initializes a new instance of the VisualCellsCollection class.
Properties
Gets the number of elements contained in the ICollection<T>.
public int Count { get; }
The number of elements contained in the ICollection<T>.
Gets a value indicating whether the ICollection<T> is read-only.
public bool IsReadOnly { get; }
true if the ICollection<T> is read-only; otherwise, false.
Gets or sets the GridCellElement at the specified index.
Methods
Adds the specified item.
Removes all items from the ICollection<T>.
Determines whether the specified cell element is contained in the collection.
Copies to the specific array starting from the index.
public void CopyTo(GridCellElement[] array, int arrayIndex)
The array.
arrayIndexintIndex of the array.
Returns an enumerator that iterates through the collection.
public IEnumerator<GridCellElement> GetEnumerator()
IEnumerator<GridCellElement>
A IEnumerator<T> that can be used to iterate through the collection.
Returns the index of the specified cell element.
Inserts the specified index.
public void Insert(int index, GridCellElement item)
The index.
itemGridCellElementThe item.
Removes the specified item.
Removes the IList<T> item at the specified index.
public void RemoveAt(int index)
The zero-based index of the item to remove.
Exceptions:index is not a valid index in the IList<T>.
The IList<T> is read-only.