DesignerVerbCollection.Insert(Int32, DesignerVerb) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Inserts the specified DesignerVerb at the specified index.
public:
void Insert(int index, System::ComponentModel::Design::DesignerVerb ^ value);
public void Insert (int index, System.ComponentModel.Design.DesignerVerb value);
public void Insert (int index, System.ComponentModel.Design.DesignerVerb? value);
member this.Insert : int * System.ComponentModel.Design.DesignerVerb -> unit
Public Sub Insert (index As Integer, value As DesignerVerb)
Parameters
- index
- Int32
The index in the collection at which to insert the verb.
- value
- DesignerVerb
The DesignerVerb to insert in the collection.
Examples
The following code example demonstrates how to insert a DesignerVerb into a DesignerVerbCollection at index 0.
// Inserts a DesignerVerb at index 0 of the collection.
collection->Insert( 0, gcnew DesignerVerb( "Example designer verb", gcnew EventHandler( this, &Class1::ExampleEvent ) ) );
// Inserts a DesignerVerb at index 0 of the collection.
collection.Insert( 0, new DesignerVerb("Example designer verb", new EventHandler(this.ExampleEvent)) );
' Inserts a DesignerVerb at index 0 of the collection.
collection.Insert(0, New DesignerVerb("Example designer verb", New EventHandler(AddressOf Me.ExampleEvent)))
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.