FarPoint.Win.Spread
ErrorEventHandler Delegate
See Also 
FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : ErrorEventHandler Delegate


sender
Object that raised the event
e
Object of ErrorEventArgs class that contains event data
Represents a defined method that handles the Error events for the Spread component.

Syntax

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

Parameters

sender
Object that raised the event
e
Object of ErrorEventArgs class that contains event data

Remarks

For information on the event, refer to the FpSpread Error event.

See Also