A runtime form designer control

SerializeComponentEventHandler Delegate

Event handler for form and component serialization events.

[Visual Basic]
Public Delegate Function Sub  SerializeComponentEventHandler( _ 
   ByVal sender As Object, _ 
   ByVal e As SerializeComponentEventArgs _ 
)
[C#]
public delegate void SerializeComponentEventHandler(
   object sender,
   SerializeComponentEventArgs e
)
[C++]
public __gc __delegate void SerializeComponentEventHandler(
   Object* sender,
   SerializeComponentEventArgs* 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 SerializeComponentEventArgs that contains the event data.

Remarks

When you create a SerializeComponentEventHandler 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 during form designer serialization (i.e. during form layout saving, cut or copy operations).

Requirements

Namespace: Viklele.Win.Designer

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

See Also

Viklele.Win.Designer Namespace | DeserializeComponentEventHandler