New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class RowLayoutColumnsCollection : IEnumerable

Inheritance: objectRowLayoutColumnsCollection

Implements: IEnumerable

Constructors

C#
public RowLayoutColumnsCollection()

Properties

Gets the number of elements contained in the ICollection<T>.

C#
public int Count { get; }
Property Value:

The number of elements contained in the ICollection<T>.

Gets a value indicating whether the ICollection<T> is read-only.

C#
public bool IsReadOnly { get; }
Property Value:

true if the ICollection<T> is read-only; otherwise, false.

Gets or sets the right to left mode.

C#
public bool RightToLeft { get; set; }
Property Value:

The right to left.

Gets or sets the GridViewColumn at the specified index.

C#
public GridViewColumn this[int index] { get; set; }
Parameters:indexint

Methods

Adds the specified item.

C#
public void Add(GridViewColumn item)
Parameters:itemGridViewColumn

The item.

Removes all items from the ICollection<T>.

C#
public void Clear()
Exceptions:

NotSupportedException

The ICollection<T> is read-only.

Determines whether the specified columns is contained.

C#
public bool Contains(GridViewColumn value)
Parameters:valueGridViewColumn

The value.

Returns:

bool

Copies to the specified array starting at the specified index of the target array.

C#
public void CopyTo(GridViewColumn[] array, int index)
Parameters:arrayGridViewColumn[]

The array.

indexint

The index.

Returns an enumerator that iterates through the collection.

C#
public IEnumerator<GridViewColumn> GetEnumerator()
Returns:

IEnumerator<GridViewColumn>

A IEnumerator<T> that can be used to iterate through the collection.

Returns the index of the specified column.

C#
public int IndexOf(GridViewColumn value)
Parameters:valueGridViewColumn

The value.

Returns:

int

Inserts the specified index.

C#
public void Insert(int index, GridViewColumn item)
Parameters:indexint

The index.

itemGridViewColumn

The item.

Removes the specified item.

C#
public bool Remove(GridViewColumn item)
Parameters:itemGridViewColumn

The item.

Returns:

bool

Removes the IList<T> item at the specified index.

C#
public void RemoveAt(int index)
Parameters:indexint

The zero-based index of the item to remove.

Exceptions:

ArgumentOutOfRangeException

index is not a valid index in the IList<T>.

NotSupportedException

The IList<T> is read-only.