Table.RowControlCollection.AddAt(Int32, Control) 方法

定义

将指定的 Control 对象添加到 Table.RowControlCollection 集合。 将新控件添加到数组的指定索引位置。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 override void AddAt(int index, System::Web::UI::Control ^ child);
public override void AddAt (int index, System.Web.UI.Control child);
override this.AddAt : int * System.Web.UI.Control -> unit
Public Overrides Sub AddAt (index As Integer, child As Control)

参数

index
Int32

数组中要添加子控件的位置。

child
Control

添加到 Table.RowControlCollectionControl 对象。

例外

该控件不允许子控件。

子值为 null

注解

使用 AddAt 方法将新控件添加到 Table.RowControlCollection 集合中的指定位置。 控件只能是控件的实例 TableRow

若要将控件添加到的 Table.RowControlCollection 末尾 Table.RowControlCollection ,请使用 Add 方法。

适用于

另请参阅