TemplateGroupCollection.Insert(Int32, TemplateGroup) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 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。
例外
注解
方法 Insert 将 对象添加到 TemplateGroup 集合中的特定索引位置。 若要将单个 TemplateGroup 添加到集合末尾,请使用 Add 方法。 若要向集合添加多个组,请使用 AddRange 方法。
注意
将项插入到集合中时,集合中后续项的索引会更改。