FarPoint.Win
AdvanceEventHandler Delegate
See Also 
FarPoint.Win Assembly > FarPoint.Win.SuperEdit Namespace : AdvanceEventHandler Delegate


sender
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 will handle the Advance event.

Syntax

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

Parameters

sender
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