A runtime form designer control

SelectionEventHandler Delegate

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.

Parameters

sender
The source of the event.
e
A SelectionEventArgs that contains the event data.

Remarks

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.

Requirements

Namespace: Viklele.Win.Designer

Assembly: Viklele.Win.FormDesigner (in Viklele.Win.FormDesigner.dll)

See Also

Viklele.Win.Designer Namespace