VisualRowsCollection
Represents a collection of visual row elements.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class VisualRowsCollection : IEnumerable
Inheritance: objectVisualRowsCollection
Implements:
Constructors
Initializes a new instance of the VisualRowsCollection class.
public VisualRowsCollection(RowsContainerElement container)
The container.
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 GridRowElement at the specified index.
Methods
Adds the specified item.
Removes all items from the ICollection<T>.
Determines whether the specified row element is contained in the collection.
Copies to the specific array starting from the index.
public void CopyTo(GridRowElement[] array, int arrayIndex)
The array.
arrayIndexintIndex of the array.
Returns an enumerator that iterates through the collection.
public IEnumerator<GridRowElement> GetEnumerator()
IEnumerator<GridRowElement>
A IEnumerator<T> that can be used to iterate through the collection.
Returns the index of specific row element.
Inserts the row element at the specified index.
public void Insert(int index, GridRowElement item)
The index.
itemGridRowElementThe 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.