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.
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).
Namespace: Viklele.Win.Designer
Assembly: Viklele.Win.FormDesigner (in Viklele.Win.FormDesigner.dll)
Viklele.Win.Designer Namespace | DeserializeComponentEventHandler