ErrorEventArgs Constructor(Int32)
Occurs when an error state is created by the control.
public ErrorEventArgs(
int
)
Parameters
- errorCode
- Error code that is being raised
private void control_UserError(object sender, FarPoint.Win.Input.ErrorEventArgs e)
{
Messagebox.Show(Convert.ToString(e.ErrorCode));
}
Private Sub control_UserError(ByVal sender As Object, ByVal e As FarPoint.Win.Input.ErrorEventArgs) Handles control.UserError
Messagebox.Show(e.ErrorCode);
End Sub