Class ContextualTabGroupCollection
A collection that stores ContextualTabGroup objects.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public class ContextualTabGroupCollection : CollectionBase, IList, ICollection, IEnumerable
Constructors
ContextualTabGroupCollection()
Initializes a new instance of the ContextualTabGroupCollection.
Declaration
public ContextualTabGroupCollection()
ContextualTabGroupCollection(RadElement)
Initializes a new instance of the ContextualTabGroupCollection.
Declaration
public ContextualTabGroupCollection(RadElement owner)
Parameters
RadElement
owner
|
ContextualTabGroupCollection(ContextualTabGroup[])
Initializes a new instance of the ContextualTabGroupCollection containing any array of ContextualTabGroup objects.
Declaration
public ContextualTabGroupCollection(ContextualTabGroup[] value)
Parameters
ContextualTabGroup[]
value
A array of ContextualTabGroup objects with which to intialize the collection |
ContextualTabGroupCollection(ContextualTabGroupCollection)
Initializes a new instance of the ContextualTabGroupCollection based on another ContextualTabGroupCollection.
Declaration
public ContextualTabGroupCollection(ContextualTabGroupCollection value)
Parameters
ContextualTabGroupCollection
value
A ContextualTabGroupCollection from which the contents are copied |
Properties
Item[Int32]
Represents the entry at the specified index of the ContextualTabGroup.
Declaration
public ContextualTabGroup this[int index] { get; set; }
Parameters
System.Int32
index
The zero-based index of the entry to locate in the collection. |
Property Value
ContextualTabGroup
The entry at the specified index of the collection. |
Exceptions
System.ArgumentOutOfRangeException
|
Owner
Gets or sets a value indicating the owner.
Declaration
public RadElement Owner { get; set; }
Property Value
RadElement
|
Methods
Add(ContextualTabGroup)
Adds a ContextualTabGroup with the specified value to the ContextualTabGroupCollection .
Declaration
public int Add(ContextualTabGroup value)
Parameters
ContextualTabGroup
value
The ContextualTabGroup to add. |
Returns
System.Int32
The index at which the new element was inserted. |
See Also
AddRange(ContextualTabGroup[])
Copies the elements of an array to the end of the ContextualTabGroupCollection.
Declaration
public void AddRange(ContextualTabGroup[] value)
Parameters
ContextualTabGroup[]
value
An array of type ContextualTabGroup containing the objects to add to the collection. |
See Also
AddRange(ContextualTabGroupCollection)
Adds the contents of another ContextualTabGroupCollection to the end of the collection.
Declaration
public void AddRange(ContextualTabGroupCollection value)
Parameters
ContextualTabGroupCollection
value
A ContextualTabGroupCollection containing the objects to add to the collection. |
See Also
Contains(ContextualTabGroup)
Gets a value indicating whether the ContextualTabGroupCollection contains the specified RibbonTab.
Declaration
public bool Contains(ContextualTabGroup value)
Parameters
ContextualTabGroup
value
The ContextualTabGroup to locate. |
Returns
System.Boolean
true if the ContextualTabGroup is contained in the collection; otherwise, false. |
See Also
CopyTo(ContextualTabGroup[], Int32)
Copies the ContextualTabGroupCollection values to a one-dimensional System.Array instance at the specified index.
Declaration
public void CopyTo(ContextualTabGroup[] array, int index)
Parameters
ContextualTabGroup[]
array
The one-dimensional System.Array that is the destination of the values copied from ContextualTabGroupCollection . |
System.Int32
index
The index in |
Exceptions
System.ArgumentException
-or- The number of elements in the ContextualTabGroupCollection is greater than the available space to the end of |
System.ArgumentNullException
|
See Also
GetEnumerator()
Returns an enumerator that can iterate through the ContextualTabGroupCollection .
Declaration
public ContextualTabGroupCollection.ContextualTabGroupEnumerator GetEnumerator()
Returns
ContextualTabGroupCollection.ContextualTabGroupEnumerator
None. |
See Also
IndexOf(ContextualTabGroup)
Returns the index of a ContextualTabGroup in the ContextualTabGroupCollection .
Declaration
public int IndexOf(ContextualTabGroup value)
Parameters
ContextualTabGroup
value
The ContextualTabGroup to locate. |
Returns
System.Int32
The index of the ContextualTabGroup of |
See Also
Insert(Int32, ContextualTabGroup)
Inserts a RibbonTab into the ContextualTabGroupCollection at the specified index.
Declaration
public void Insert(int index, ContextualTabGroup value)
Parameters
System.Int32
index
The zero-based index where |
ContextualTabGroup
value
|
See Also
Remove(ContextualTabGroup)
Removes a specific ContextualTabGroup from the ContextualTabGroupCollection .
Declaration
public void Remove(ContextualTabGroup value)
Parameters
ContextualTabGroup
value
The ContextualTabGroup to remove from the ContextualTabGroupCollection . |
Exceptions
System.ArgumentException
|