Event handler for component selection events.
[Visual Basic] Public Delegate Function Sub SelectionEventHandler( _ ByVal sender As Object, _ ByVal e As SelectionEventArgs _ ) [C#] public delegate void SelectionEventHandler( object sender, SelectionEventArgs e ) [C++] public __gc __delegate void SelectionEventHandler( Object* sender, SelectionEventArgs* e )
[JScript] In JScript, you can use the delegates defined by a type, but you cannot define your own.
When you create a SelectionEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event.
The event handler is called when component selection is changing and also after the selection change is completed.
Namespace: Viklele.Win.Designer
Assembly: Viklele.Win.FormDesigner (in Viklele.Win.FormDesigner.dll)
Viklele.Win.Designer Namespace