TemplateGroupCollection Class
Represents a collection of TemplateGroup objects within a control designer. This class cannot be inherited.
Assembly: System.Design (in System.Design.dll)
| Name | Description | |
|---|---|---|
![]() | TemplateGroupCollection() | Initializes a new instance of the TemplateGroupCollection class. |
| Name | Description | |
|---|---|---|
![]() | Count | Gets the number of TemplateGroup objects in the collection. |
![]() | Item[Int32] | Gets or sets a TemplateGroup object at the specified index in the collection. |
| Name | Description | |
|---|---|---|
![]() | Add(TemplateGroup^) | Adds the specified TemplateGroup object to the end of the collection. |
![]() | AddRange(TemplateGroupCollection^) | Adds the template groups in an existing TemplateGroupCollection object to the current TemplateGroupCollection object. |
![]() | Clear() | Removes all groups from the collection. |
![]() | Contains(TemplateGroup^) | Determines whether the specified group is contained within the collection. |
![]() | CopyTo(array<TemplateGroup^>^, Int32) | Copies the groups in the collection to a compatible one-dimensional array, starting at the specified index of the target array. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | IndexOf(TemplateGroup^) | Returns the index of the specified TemplateGroup object within the collection. |
![]() | Insert(Int32, TemplateGroup^) | Inserts a TemplateGroup object into the collection at the specified index. |
![]() | Remove(TemplateGroup^) | Removes the specified TemplateGroup object from the collection. |
![]() | RemoveAt(Int32) | Removes the TemplateGroup object at the specified index within the collection. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | ICollection::CopyTo(Array^, Int32) | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see CopyTo. |
![]() ![]() | IEnumerable::GetEnumerator() | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see GetEnumerator. |
![]() ![]() | IList::Add(Object^) | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see Add. |
![]() ![]() | IList::Clear() | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see Clear. |
![]() ![]() | IList::Contains(Object^) | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see Contains. |
![]() ![]() | IList::IndexOf(Object^) | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see IndexOf. |
![]() ![]() | IList::Insert(Int32, Object^) | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see Insert. |
![]() ![]() | IList::Remove(Object^) | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see Remove. |
![]() ![]() | IList::RemoveAt(Int32) | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see RemoveAt. |
![]() ![]() | ICollection::Count | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see Count. |
![]() ![]() | ICollection::IsSynchronized | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see IsSynchronized. |
![]() ![]() | ICollection::SyncRoot | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see SyncRoot. |
![]() ![]() | IList::IsFixedSize | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see IsFixedSize. |
![]() ![]() | IList::IsReadOnly | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see IsReadOnly. |
![]() ![]() | IList::Item[Int32] | This API supports the product infrastructure and is not intended to be used directly from your code. For a description of this member, see the IList class. |
| Name | Description | |
|---|---|---|
![]() | AsParallel() | Overloaded. Enables parallelization of a query.(Defined by ParallelEnumerable.) |
![]() | AsQueryable() | Overloaded. Converts an IEnumerable to an IQueryable.(Defined by Queryable.) |
![]() | Cast<TResult>() | Casts the elements of an IEnumerable to the specified type.(Defined by Enumerable.) |
![]() | OfType<TResult>() | Filters the elements of an IEnumerable based on a specified type.(Defined by Enumerable.) |
The ControlDesigner class, and any derived class, defines the TemplateGroups property as a TemplateGroupCollection object. The TemplateGroupCollection property is typically used only by a design host such as Visual Studio 2005.
The collection dynamically increases in size as objects are added. Indexes in this collection are zero-based. Use the Count property to determine how many groups are in the collection.
Additionally, use the TemplateGroupCollection methods and properties to provide the following functionality:
The Add method to add a single group to the collection.
The Insert method to add a group at a particular index within the collection.
The Remove method to remove a group.
The RemoveAt method to remove the group at a particular index.
The Contains method to determine whether a particular group is already in the collection.
The IndexOf method to retrieve the index of a group within the collection.
The Item indexer to get or set the group at a particular index, using array notation.
The AddRange method to add multiple groups to the collection.
You can add multiple groups either as an array of groups or as a TemplateGroupCollection object that you retrieve through the TemplateGroups property of another control designer.
The Clear method to remove all groups from the collection.
The following code example demonstrates how to define a simple control designer that is derived from the ControlDesigner class. The derived control designer implements the TemplateGroups property by getting the template groups that are defined for the base class and adding a template group that is specific to the derived control designer.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.




