Spread Windows Forms 12.0 Product Documentation
ErrorEventArgs Constructor(Int32,String)
Example 


FarPoint.Win Assembly > FarPoint.Win.SuperEdit Namespace > ErrorEventArgs Class > ErrorEventArgs Constructor : ErrorEventArgs Constructor(Int32,String)
Error code for the event
Error string for the event
Creates an ErrorEventArgs object with the specified code and text.
Syntax
'Declaration
 
Public Function New( _
   ByVal errorCode As Integer, _
   ByVal errorText As String _
)
'Usage
 
Dim errorCode As Integer
Dim errorText As String
 
Dim instance As New ErrorEventArgs(errorCode, errorText)
public ErrorEventArgs( 
   int errorCode,
   string errorText
)

Parameters

errorCode
Error code for the event
errorText
Error string for the event
Example
private void control_UserError(object sender, FarPoint.Win.Input.ErrorEventArgs e)
{
Messagebox.Show(Convert.ToString(e.ErrorCode) + e.ErrorInfo);
}
Private Sub control_UserError(ByVal sender As Object, ByVal e As FarPoint.Win.Input.ErrorEventArgs) Handles control.UserError
  Messagebox.Show(e.ErrorCode + e.ErrorInfo);
End Sub
See Also

Reference

ErrorEventArgs Class
ErrorEventArgs Members
Overload List