FarPoint.Win
InvalidDataEventHandler Delegate
See Also 
FarPoint.Win Assembly > FarPoint.Win Namespace : InvalidDataEventHandler Delegate


sender
The source of the event.
e

An EventArgs object that contains the event data.
For more information, see the EventArgs class in the Microsoft .NET Framework Reference.

Represents the method that handles the InvalidData event.

Syntax

Visual Basic (Declaration) 
Public Delegate Sub InvalidDataEventHandler( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
) 
Visual Basic (Usage)Copy Code
Dim instance As New InvalidDataEventHandler(AddressOf HandlerMethod)
C# 
public delegate void InvalidDataEventHandler( 
   object sender,
   EventArgs e
)

Parameters

sender
The source of the event.
e

An EventArgs object that contains the event data.
For more information, see the EventArgs class in the Microsoft .NET Framework Reference.

See Also