ClassAutoHideGroupCollection
A collection that containes instances of type AutoHideGroup.
Definition
Namespace:Telerik.WinControls.UI.Docking
Assembly:Telerik.WinControls.RadDock.dll
Syntax:
public class AutoHideGroupCollection : IList, ICollection, IEnumerable
Inheritance: objectAutoHideGroupCollection
Implements:
Properties
Count
Gets the number of AutoHideGroup instances currently contained.
this[int]
Gets the AutoHideGroup instance at the specified index in the collection
Declaration
public AutoHideGroup this[int index] { get; }
Parameters
index
Property Value
Methods
Add(AutoHideGroup)
Adds the specified AutoHideGroup instance to the collection.
Clear()
Removes all entries from the collection.
Declaration
public void Clear()
Implements
CopyTo(Array, int)
Copies the collection to the destination Array, starting from the specified index.
CopyTo(AutoHideGroup[], int)
Copies the collection to the destination Array, starting from the specified index.
Declaration
public void CopyTo(AutoHideGroup[] array, int arrayIndex)
Parameters
array
arrayIndex
Remove(AutoHideGroup)
Removes the specified instance from the collection.
Declaration
public bool Remove(AutoHideGroup item)
Parameters
item
Returns