Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class RowLayoutColumnsCollection : IEnumerable
Inheritance: objectRowLayoutColumnsCollection
Implements:
Constructors
public RowLayoutColumnsCollection()
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 right to left mode.
public bool RightToLeft { get; set; }
The right to left.
Gets or sets the GridViewColumn at the specified index.
Methods
Adds the specified item.
Removes all items from the ICollection<T>.
Determines whether the specified columns is contained.
Copies to the specified array starting at the specified index of the target array.
public void CopyTo(GridViewColumn[] array, int index)
The array.
indexintThe index.
Returns an enumerator that iterates through the collection.
public IEnumerator<GridViewColumn> GetEnumerator()
IEnumerator<GridViewColumn>
A IEnumerator<T> that can be used to iterate through the collection.
Returns the index of the specified column.
Inserts the specified index.
public void Insert(int index, GridViewColumn item)
The index.
itemGridViewColumnThe 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.