DesignerVerbCollection.Remove(DesignerVerb) 方法

定義

將指定的 DesignerVerb 資料從集合中移除。

public:
 void Remove(System::ComponentModel::Design::DesignerVerb ^ value);
public void Remove(System.ComponentModel.Design.DesignerVerb value);
member this.Remove : System.ComponentModel.Design.DesignerVerb -> unit
Public Sub Remove (value As DesignerVerb)

參數

value
DesignerVerb

從收藏中移除。DesignerVerb

範例

以下程式碼範例示範如何從 DesignerVerbCollection中移除 aDesignerVerb

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

適用於