Table.RowControlCollection.AddAt(Int32, Control) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的 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.RowControlCollection 的 Control
对象。
例外
该控件不允许子控件。
注解
使用 AddAt 方法将新控件添加到 Table.RowControlCollection 集合中的指定位置。 控件只能是控件的实例 TableRow 。
若要将控件添加到的 Table.RowControlCollection 末尾 Table.RowControlCollection ,请使用 Add 方法。