TemplateGroupCollection.Insert(Int32, TemplateGroup) 方法

定义

TemplateGroup 对象插入到集合中的指定索引处。

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)

参数

index
Int32

要插入 group 的位置在集合中从零开始的索引。

group
TemplateGroup

要插入到集合中的 TemplateGroup

例外

index 小于零。

- 或 -

index 大于 Count 属性。

注解

方法 Insert 将 对象添加到 TemplateGroup 集合中的特定索引位置。 若要将单个 TemplateGroup 添加到集合末尾,请使用 Add 方法。 若要向集合添加多个组,请使用 AddRange 方法。

注意

将项插入到集合中时,集合中后续项的索引会更改。

适用于

另请参阅