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

A collection that containes instances of type AutoHideGroup.

Definition

Namespace:Telerik.WinControls.UI.Docking

Assembly:Telerik.WinControls.RadDock.dll

Syntax:

C#
public class AutoHideGroupCollection : IList, ICollection, IEnumerable

Inheritance: objectAutoHideGroupCollection

Implements: ICollectionIEnumerableIList

Properties

Gets the number of AutoHideGroup instances currently contained.

C#
public int Count { get; }

Implements: ICollection.Count

Gets the AutoHideGroup instance at the specified index in the collection

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

Methods

Adds the specified AutoHideGroup instance to the collection.

C#
public void Add(AutoHideGroup item)
Parameters:itemAutoHideGroup

Removes all entries from the collection.

C#
public void Clear()

Implements: IList.Clear()

Copies the collection to the destination Array, starting from the specified index.

C#
public void CopyTo(Array array, int index)
Parameters:arrayArrayindexint

Implements: ICollection.CopyTo(Array, int)

Copies the collection to the destination Array, starting from the specified index.

C#
public void CopyTo(AutoHideGroup[] array, int arrayIndex)
Parameters:arrayAutoHideGroup[]arrayIndexint
C#
public IEnumerator GetEnumerator()
Returns:

IEnumerator

Implements: IEnumerable.GetEnumerator()

Removes the specified instance from the collection.

C#
public bool Remove(AutoHideGroup item)
Parameters:itemAutoHideGroupReturns:

bool