About Progress

  • Company
    • Company Overview
    • Leadership
    • Corporate Social Responsibility
    • Investor Relations
    • Press Releases
    • Press Coverage
    • Recognitions
    • Progress Labs
    • Events
    • Customers
    • Careers
    • Offices
  • Technology
    • Cloud Native App Dev Platform
    • Cognitive Services
    • Web Content Management
    • UI/UX Tools
    • Secure Data Connectivity and Integration
    • Secure Managed File Transfer
    • OpenEdge
    • Network Monitoring
  • Services
    • Consulting
    • Education
    • Modernization
    • Outsourcing
  • Product Bundles

    DevCraft

    All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:

    • Conversational UI
    • Online Training
    • Document Processing Library
    Web
    Kendo UI UI for jQuery UI for Angular UI for React UI for Vue UI for ASP.NET AJAX UI for ASP.NET MVC UI for ASP.NET Core UI for Blazor UI for Silverlight UI for PHP UI for JSP
    Mobile
    UI for Xamarin NativeScript OSS framework
    Desktop
    UI for WPF UI for UWP UI for WinForms
    Reporting & Mocking
    Telerik Reporting Telerik Report Server Telerik JustMock
    Automated Testing
    Test Studio Test Studio Dev Edition
    Debugging
    FiddlerCore
    CMS
    Sitefinity
    UX Design
    Unite UX
    Document Management
    Telerik Document Processing
    Innovations Lab
    VR DataViz
    Free Tools
    Fiddler JustAssembly JustDecompile VB.NET to C# Converter Testing Framework
    View all products
  • Overview
  • Demos
    • What's New
    • Roadmap
    • Release History
  • Docs & Support
  • Pricing
  • Search
  • Shopping cart
    • Account Overview
    • Edit Profile
    • Payment Profiles
    • Renewals & Upgrades
    • Support Tickets
    • Log out
  • Login
  • Contact Us
  • Try now

Class ContextualTabGroupCollection

A collection that stores ContextualTabGroup objects.

Inheritance
System.Object
System.Collections.CollectionBase
ContextualTabGroupCollection
Inherited Members
System.Collections.CollectionBase.Clear()
System.Collections.CollectionBase.RemoveAt(System.Int32)
System.Collections.CollectionBase.System.Collections.ICollection.CopyTo(System.Array, System.Int32)
System.Collections.CollectionBase.System.Collections.IList.get_Item(System.Int32)
System.Collections.CollectionBase.System.Collections.IList.set_Item(System.Int32, System.Object)
System.Collections.CollectionBase.System.Collections.IList.Contains(System.Object)
System.Collections.CollectionBase.System.Collections.IList.Add(System.Object)
System.Collections.CollectionBase.System.Collections.IList.Remove(System.Object)
System.Collections.CollectionBase.System.Collections.IList.IndexOf(System.Object)
System.Collections.CollectionBase.System.Collections.IList.Insert(System.Int32, System.Object)
System.Collections.CollectionBase.OnSet(System.Int32, System.Object, System.Object)
System.Collections.CollectionBase.OnInsert(System.Int32, System.Object)
System.Collections.CollectionBase.OnClear()
System.Collections.CollectionBase.OnRemove(System.Int32, System.Object)
System.Collections.CollectionBase.OnValidate(System.Object)
System.Collections.CollectionBase.OnSetComplete(System.Int32, System.Object, System.Object)
System.Collections.CollectionBase.OnInsertComplete(System.Int32, System.Object)
System.Collections.CollectionBase.OnClearComplete()
System.Collections.CollectionBase.OnRemoveComplete(System.Int32, System.Object)
System.Collections.CollectionBase.InnerList
System.Collections.CollectionBase.List
System.Collections.CollectionBase.Capacity
System.Collections.CollectionBase.Count
System.Collections.CollectionBase.System.Collections.IList.IsReadOnly
System.Collections.CollectionBase.System.Collections.IList.IsFixedSize
System.Collections.CollectionBase.System.Collections.ICollection.IsSynchronized
System.Collections.CollectionBase.System.Collections.ICollection.SyncRoot
System.Collections.CollectionBase.System.Collections.IList.Item[System.Int32]
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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

index is outside the valid range of indexes for the collection.

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[])

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
Add(ContextualTabGroup)

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
Add(ContextualTabGroup)

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
IndexOf(ContextualTabGroup)

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 array where copying begins.

Exceptions
System.ArgumentException

array is multidimensional.

-or-

The number of elements in the ContextualTabGroupCollection is greater than the available space to the end of array.

System.ArgumentNullException

array is null.

See Also
System.Array

GetEnumerator()

Returns an enumerator that can iterate through the ContextualTabGroupCollection .

Declaration
public ContextualTabGroupCollection.ContextualTabGroupEnumerator GetEnumerator()
Returns
ContextualTabGroupCollection.ContextualTabGroupEnumerator

None.

See Also
System.Collections.IEnumerator

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 value in the ContextualTabGroupCollection, if found; otherwise, -1.

See Also
Contains(ContextualTabGroup)

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 value should be inserted.

ContextualTabGroup value

See Also
Add(ContextualTabGroup)

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

value is not found in the Collection.

Extension Methods

SvgExtentions.Traverse<T>(T, Func<T, IEnumerable<T>>)
SvgExtentions.TraverseDepthFirst<T>(T, Func<T, IEnumerable<T>>)

See Also

ContextualTabGroupCollection

Was this article helpful?

 / 
Tell us how we can improve this article
Skip
Getting Started
  • Install Now
  • Demos
  • Step-by-Step Tutorial
  • Sample Applications
  • SDK Samples
  • Visual Studio Extensions
Support Resources
  • Code Library
  • Knowledge Base
  • Videos
Community
  • Forums
  • Blogs
  • Feedback Portal
  • Document Processing Feedback Portal

Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.

Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.