Control.ControlCollection.Remove メソッド
指定したコントロールをコントロール コレクションから削除します。
Public Overridable Sub Remove( _
ByVal value As Control _)
[C#]
public virtual void Remove(Controlvalue);
[C++]
public: virtual void Remove(Control* value);
[JScript]
public function Remove(
value : Control);
パラメータ
- value
Control.ControlCollection から削除する Control 。
解説
コントロール コレクションから Control を削除すると、後続のすべてのコントロールが、それぞれコレクション内で 1 つ前の位置に移動します。
RemoveAt メソッドまたは Clear メソッドを使用しても、 Control を削除できます。
新しい Control オブジェクトをコレクションに追加するには、 Add メソッドまたは AddRange メソッドを使用します。
継承時の注意: 派生クラスで Remove をオーバーライドする場合は、基本クラスの Remove メソッドを呼び出して、確実にコントロールがコレクションから削除されるようにしてください。
使用例
[Visual Basic, C#, C++] Control が派生クラス Panel の Control.ControlCollection のメンバである場合に、そのコントロールをコレクションから削除する例を次に示します。この例は、 Form 上に Panel 、 Button 、および少なくとも 1 つの RadioButton コントロールが作成されていることを前提にしています。 RadioButton コントロールは Panel コントロールに追加され、 Panel コントロールが Form コントロールに追加されます。ボタンがクリックされると、 radioButton2
という名前のオプション ボタンが Control.ControlCollection から削除されます。
' Remove the RadioButton control if it exists.
Private Sub RemoveButton_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles RemoveButton.Click
If Panel1.Controls.Contains(RadioAddRangeButton) Then
Panel1.Controls.Remove(RadioAddRangeButton)
End If
End Sub
[C#]
// Remove the RadioButton control if it exists.
private void removeButton_Click(object sender, System.EventArgs e)
{
if(panel1.Controls.Contains(removeButton))
{
panel1.Controls.Remove(removeButton);
}
}
[C++]
// Remove the RadioButton control if it exists.
private:
void removeButton_Click(Object* /*sender*/, System::EventArgs* /*e*/) {
if (panel1->Controls->Contains(removeButton)) {
panel1->Controls->Remove(removeButton);
}
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET
参照
Control.ControlCollection クラス | Control.ControlCollection メンバ | System.Windows.Forms 名前空間 | RemoveAt | Clear | Add