TemplateGroupCollection.Insert(Int32, TemplateGroup) Method

Definition

Inserts a TemplateGroup object into the collection at the specified index.

public:
 void Insert(int index, System::Web::UI::Design::TemplateGroup ^ group);
public void Insert (int index, System.Web.UI.Design.TemplateGroup group);
member this.Insert : int * System.Web.UI.Design.TemplateGroup -> unit
Public Sub Insert (index As Integer, group As TemplateGroup)

Parameters

index
Int32

The zero-based index within the collection at which to insert group.

group
TemplateGroup

The TemplateGroup to insert into the collection.

Exceptions

index is less than zero.

-or-

index is greater than the Count property.

Remarks

The Insert method adds a TemplateGroup object to the collection at a specific index location. To add a single TemplateGroup to the end of the collection, use the Add method. To add multiple groups to the collection, use the AddRange method.

Note

When you insert an item into the collection, the indexes change for subsequent items in the collection.

Applies to

See also