ControlCollection.Remove(Control) メソッド

定義

親サーバー コントロールの ControlCollection オブジェクトから、指定したサーバー コントロールを削除します。

public:
 virtual void Remove(System::Web::UI::Control ^ value);
public virtual void Remove (System.Web.UI.Control value);
abstract member Remove : System.Web.UI.Control -> unit
override this.Remove : System.Web.UI.Control -> unit
Public Overridable Sub Remove (value As Control)

パラメーター

value
Control

削除されるサーバー コントロール。

次のコード例では、 メソッドを Remove 使用して、サーバー コントロールから子コントロールを myButton 削除します。 最初に、 メソッドをContains使用して、 が オブジェクトにControlCollection含まれているかどうかをmyChildControl判断し、存在する場合はそれを削除します。

// Use the Contains method to check whether
// a child control exists, and if it does,
// use the Remove method to delete it.        
if (myButton.Controls.Contains(myChildControl))
{
   myButton.Controls.Remove(myChildControl);
   msgRemove.Text = "You removed myLiteralControl.";
}
else msgRemove.Text="The control to remove does not exist." ;
' Use the Contains method to check whether
' a child control exists, and if it does,
' use the Remove method to delete it.        
If myButton.Controls.Contains(myChildControl)
   myButton.Controls.Remove(myChildControl)
   msgRemove.Text = "You removed myLiteralControl."
Else
   msgRemove.Text="The control to remove does not exist." 
End If

注釈

インデックスの場所からコントロールを削除するには、 メソッドを使用します RemoveAt

適用対象

こちらもご覧ください