'Declaration
Public Event UserError As UserErrorEventHandler
'Usage
Dim instance As SuperEditPreview Dim handler As UserErrorEventHandler AddHandler instance.UserError, handler
public event UserErrorEventHandler UserError
Event Data
The event handler receives an argument of type UserErrorEventArgs containing data related to this event. The following UserErrorEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ErrorCode | Gets the error code associated with an error event. (Inherited from FarPoint.Win.SuperEdit.ErrorEventArgs) |
ErrorInfo | Gets the additional error information associated with an error event. (Inherited from FarPoint.Win.SuperEdit.ErrorEventArgs) |
UserErrorCode | Gets the error code associated with a user error event. |
See Also