ClassRowLayoutColumnsCollection
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public class RowLayoutColumnsCollection : IEnumerable
Inheritance: objectRowLayoutColumnsCollection
Implements:
Constructors
RowLayoutColumnsCollection()
Declaration
public RowLayoutColumnsCollection()
Properties
Count
Gets the number of elements contained in the ICollection<T>.
Declaration
public int Count { get; }
Property Value
The number of elements contained in the ICollection<T>.
IsReadOnly
Gets a value indicating whether the ICollection<T> is read-only.
Declaration
public bool IsReadOnly { get; }
Property Value
true if the ICollection<T> is read-only; otherwise, false.
RightToLeft
Gets or sets the right to left mode.
Declaration
public bool RightToLeft { get; set; }
Property Value
The right to left.
this[int]
Gets or sets the GridViewColumn at the specified index.
Declaration
public GridViewColumn this[int index] { get; set; }
Parameters
index
Property Value
Methods
Add(GridViewColumn)
Adds the specified item.
Declaration
public void Add(GridViewColumn item)
Parameters
item
The item.
Clear()
Removes all items from the ICollection<T>.
Declaration
public void Clear()
Exceptions
The ICollection<T> is read-only.
Contains(GridViewColumn)
Determines whether the specified columns is contained.
Declaration
public bool Contains(GridViewColumn value)
Parameters
value
The value.
Returns
CopyTo(GridViewColumn[], int)
Copies to the specified array starting at the specified index of the target array.
Declaration
public void CopyTo(GridViewColumn[] array, int index)
Parameters
array
The array.
index
The index.
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<GridViewColumn> GetEnumerator()
Returns
IEnumerator<GridViewColumn>
A IEnumerator<T> that can be used to iterate through the collection.
IndexOf(GridViewColumn)
Returns the index of the specified column.
Declaration
public int IndexOf(GridViewColumn value)
Parameters
value
The value.
Returns
Insert(int, GridViewColumn)
Inserts the specified index.
Declaration
public void Insert(int index, GridViewColumn item)
Parameters
index
The index.
item
The item.
Remove(GridViewColumn)
Removes the specified item.
Declaration
public bool Remove(GridViewColumn item)
Parameters
item
The item.
Returns
RemoveAt(int)
Removes the IList<T> item at the specified index.
Declaration
public void RemoveAt(int index)
Parameters
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.