Table.RowControlCollection.Add(Control) 方法

定义

将指定的 Control 对象添加到 Table.RowControlCollection 集合。

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

public:
 override void Add(System::Web::UI::Control ^ child);
public override void Add (System.Web.UI.Control child);
override this.Add : System.Web.UI.Control -> unit
Public Overrides Sub Add (child As Control)

参数

child
Control

要添加到 ControlTable.RowControlCollection

例外

child 指定的对象不是 TableRow

注解

使用 Add 方法将新控件添加到 Table.RowControlCollection 集合。 在数组的末尾添加指定的控件。 控件只能是控件的实例 TableRow

若要将控件添加到 Table.RowControlCollection 集合中的特定索引位置,请使用 AddAt 方法。

适用于

另请参阅