DesignerVerbCollection.Remove メソッドとは何? わかりやすく解説 Weblio辞書 (original) (raw)

指定した DesignerVerbコレクションから削除します

名前空間: System.ComponentModel.Design
アセンブリ: System (system.dll 内)
構文構文

Visual Basic (宣言)

Public Sub Remove ( _ value As DesignerVerb _ )

Visual Basic (使用法)

Dim instance As DesignerVerbCollection Dim value As DesignerVerb

instance.Remove(value)

C#

public void Remove ( DesignerVerb value )

C++

public: void Remove ( DesignerVerb^ value )

J#

public void Remove ( DesignerVerb value )

JScript

public function Remove ( value : DesignerVerb )

パラメータ

value

コレクションから削除する DesignerVerb。

使用例使用例

Visual Basic

' Removes the specified DesignerVerb from the collection. Dim verb As New DesignerVerb("Example designer verb", New EventHandler(AddressOf Me.ExampleEvent)) collection.Remove(verb)

C#

// Removes the specified DesignerVerb from the collection. DesignerVerb verb = new DesignerVerb("Example designer verb", new EventHandler(this.ExampleEvent)); collection.Remove( verb );

C++

// Removes the specified DesignerVerb from the collection. DesignerVerb^ verb = gcnew DesignerVerb( "Example designer verb", gcnew EventHandler( this, &Class1::ExampleEvent ) ); collection->Remove( verb );

プラットフォームプラットフォーム

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

開発プラットフォーム中には.NET Framework によってサポートされていないバージョンありますサポートされているバージョンについては、「システム要件」を参照してください

バージョン情報バージョン情報

.NET Framework
サポート対象 : 2.01.11.0

参照参照

関連項目
DesignerVerbCollection クラス
DesignerVerbCollection メンバ
System.ComponentModel.Design 名前空間