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